2014-01-15 10:53:42 +01:00

14 lines
94 B
C++

struct A {
int x;
};
struct B : A {
int y;
int foo();
};
enum E {
a = 0,
b = 1
};