Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / enum.C
blob81b4574d85299b5279180ef02c342f45e39e5473
1 // { dg-do assemble  }
2 // PRMS Id: 4337
3 // Bug: Enums are not looked up to arbitrary depth.
5 struct W {
6   enum A { B };
7 };
9 struct X : public W
10 {};
12 struct Y : public X
13 {};
15 struct S
17   X::A a1;
18   Y::A a2;                      // { dg-bogus "" }