1 2 3 4 5 6 7 8 9 10 11 12 13 14
struct A { public: int x; }; struct B : A { int y; int foo(); }; enum E { a = 0, b = 1 };