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

9 lines
68 B
C++

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