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