android13/external/clang/test/ASTMerge/Inputs/class1.cpp

21 lines
176 B
C++
Raw Normal View History

2024-06-22 08:45:49 -04:00
struct A {
public:
int x;
};
struct B : A {
float y;
float foo();
};
struct C {
C(int i = 10);
C(const C&);
C &operator=(C&);
~C();
};
enum E {
b = 1
};