llvm-project/clang/test/ASTMerge/Inputs/inheritance-base.cpp

8 lines
56 B
C++

class A
{
public:
int x;
A(int _x) : x(_x) {
}
};