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