summaryrefslogtreecommitdiffstats
path: root/test/ASTMerge/Inputs/class1.cpp
blob: 0cd6565f1a92857622cf6df6adfa9a70a323eedd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
struct A {
  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
};
OpenPOWER on IntegriCloud