blob: b600cdb1fcf913e029f99561231876078818df84 [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();
};