PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / implicit-typename1.C
blob2952e6fd001db72a0fb31d863ae0e7c51b7517a3
1 // The -pedantic option must be omitted to trigger the crash.
2 // { dg-do compile }
3 // { dg-options "" }
5 // PR c++/7982: Crash warning about implicit typename.
6 // The base class refers to another typename, while the
7 // name lookup finds a template.
9 template <typename T> struct X {};
11 template <typename T> struct C {
12   typedef typename T::X X;
15 template <typename T> struct A : public C<T> {
16   typedef ::X<int> X;