blob: fc90902a308496ca8c2a2457a9bba39137ae1d9e [file] [log] [blame]
// { dg-do assemble }
struct A { typedef int foo; };
struct B: public A {
typedef int bar;
struct C {
void g (B::bar); // { dg-bogus "" } nested type failure
void f (B::foo);
};
};