summaryrefslogtreecommitdiff
path: root/clang/test/ASTMerge/Inputs/class1.cpp
blob: b600cdb1fcf913e029f99561231876078818df84 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct A {
  int x;
};

struct B : A {
  float y;
  float foo();
};

struct C {
  C(int i = 10);
  C(const C&);
  C &operator=(C&);
  ~C();
};