blob: 0cd6565f1a92857622cf6df6adfa9a70a323eedd [file] [log] [blame]
John McCall5250f272010-06-03 19:28:45 +00001struct A {
2 int x;
3};
4
5struct B : A {
6 float y;
7 float foo();
8};
Douglas Gregor81134ad2010-10-01 23:55:07 +00009
10struct C {
11 C(int i = 10);
12 C(const C&);
13 C &operator=(C&);
14 ~C();
15};
Richard Smith5b9268f2012-12-20 02:22:15 +000016
17enum E {
18 b = 1
19};