Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / memtemp73.C
blob5580d9063b13be3350a03d79d4c6d086062a347f
1 // { dg-do run  }
2 template <class T> struct A {
3   template <class U> void f(U);
4 };
6 template <int i> struct B { };
8 template <class T> template <class U>
9 void A<T>::f (U)
11   enum { foo };
12   B<foo> b;
15 int main ()
17   A<char> a;
18   a.f (42);