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

10 lines
65 B
C++

struct A {
int x;
};
struct B : A {
int y;
int foo();
};