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

15 lines
106 B
C++
Raw Normal View History

2024-06-22 08:45:49 -04:00
struct A {
public:
int x;
};
struct B : A {
int y;
int foo();
};
enum E {
a = 0,
b = 1
};