unplugged-system/external/clang/test/ASTMerge/Inputs/inheritance-base.cpp

8 lines
56 B
C++
Raw Normal View History

class A
{
public:
int x;
A(int _x) : x(_x) {
}
};