Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.jason / scoping13.C
blobfc90902a308496ca8c2a2457a9bba39137ae1d9e
1 // { dg-do assemble  }
3 struct A { typedef int foo; };
4 struct B: public A {
5   typedef int bar;
6   struct C {
7     void g (B::bar);            // { dg-bogus "" } nested type failure
8     void f (B::foo);
9   };