xref: /llvm-project/clang/test/ASTMerge/inheritance/Inputs/inheritance-base.cpp (revision 0333dd95636da52229ca14b4e5525c1cd8ba62d2)
1 class A
2 {
3 public:
4   int x;
A(int _x)5   A(int _x) : x(_x) {
6   }
7 };
8