xref: /minix3/external/bsd/llvm/dist/clang/test/ASTMerge/Inputs/class1.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 struct A {
2   int x;
3 };
4 
5 struct B : A {
6   float y;
7   float foo();
8 };
9 
10 struct C {
11   C(int i = 10);
12   C(const C&);
13   C &operator=(C&);
14   ~C();
15 };
16 
17 enum E {
18   b = 1
19 };
20