minix/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/class1.cpp

20 lines
164 B
C++
Raw Normal View History

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
};