blob: 5d5d9ca2333cb3ef5d2afaaf32bf2a1f36061e66 [file] [log] [blame]
John McCall5250f272010-06-03 19:28:45 +00001struct A {
2 int x;
3};
4
5struct B : A {
6 int y;
7 int foo();
8};
Douglas Gregor81134ad2010-10-01 23:55:07 +00009
Richard Smith5b9268f2012-12-20 02:22:15 +000010enum E {
11 a = 0,
12 b = 1
13};