xref: /aosp_15_r20/external/clang/test/ASTMerge/Inputs/class2.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 struct A {
2   public:
3     int x;
4 };
5 
6 struct B : A {
7   int y;
8   int foo();
9 };
10 
11 enum E {
12   a = 0,
13   b = 1
14 };
15