Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / elab1.C
blob778150f06dc92ca32600417b7c4392e3da45dc46
1 // Copyright (C) 2003 Free Software Foundation
2 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3 // { dg-do compile }
5 // Elaborate type specifier of class template
7 template <class T> class A {
8   class B;
9 };
11 template <class T> class A<T>::B {
12   friend class A;