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

14 lines
94 B
C++
Raw Normal View History

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