aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/class/Inputs/class1.cpp
blob: b0a7645cfe630e4cefd157225bffc813888f33b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
struct A {
  public:
    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
};