// { dg-do assemble } // { dg-options "" } // Copyright (C) 1999 Free Software Foundation // by Alexandre Oliva // based on bug report by Nick Rasmussen // This is slightly different from typename1.C. This one tests // whether the implicit typename extension works. gcc 2.95 reports: // warning: lookup of `foo' finds `struct foo' // warning: instead of `baz::foo' from dependent base class // warning: (use `typename baz::foo' if that's what you meant) // But baz::foo is not a base class, and `foo' should have been // found in baz's scope. struct foo; template struct bar { typedef int foo; }; template struct baz { typedef bar::foo foo; // { dg-error "" } implicit typename void m(foo); };