blob: 0cd6565f1a92857622cf6df6adfa9a70a323eedd [file] [log] [blame]
struct A {
int x;
};
struct B : A {
float y;
float foo();
};
struct C {
C(int i = 10);
C(const C&);
C &operator=(C&);
~C();
};
enum E {
b = 1
};