Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / implicit-typename1.C
blob3278791810a962518a25389c0e9524c52d4e7a72
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;