Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit32.C
blobe8e496fe3454326d2e6398910a4c587f508835d0
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 template <class T>
4 struct S
6 };
9 template <>
10 struct S<int>
12   void foo();
16 void S<int>::foo()
21 void bar()
23   S<int> si;
24   si.foo();