Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memclass18.C
blobdf9a129768dcb1ec85d3572ecf9f16bddb9f0e65
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 { };
9 A<int>::B<int> b;