hanchenye-llvm-project/clang/test/ASTMerge/Inputs/class2.cpp

14 lines
94 B
C++

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