Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / template2.C
blob07c54f82f640f3620d5cc765da8c09fe932ae167
1 // { dg-do assemble  }
2 // Bug: instantiation of member templates breaks.
4 template <class T> struct A {
5   static void f ();
6   void g ();
7 };
9 template <class T> void A<T>::f () { }
10 template <class T> void A<T>::g () { }
12 A<int> a;