Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memclass19.C
blobd345e5814fd32d8cd8624699e99deef54a266f03
1 // { dg-do assemble  }
3 template <class T> struct A {
4   template <class U> struct B;
5 };
7 template <class T> template <class U> struct A<T>::B<U*> { };
9 A<int>::B<int*> b;