blob: 2bed6d775bc46e331460408019a58ef5d9832712 [file] [log] [blame]
struct A {
public:
int x;
};
struct B : A {
int y;
int foo();
};
enum E {
a = 0,
b = 1
};