llvm/clang/test/ASTMerge/inheritance/Inputs/inheritance-base.cpp

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