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

15 lines
106 B
C++

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