Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / spec8.C
blobf06f31352c99699483b771aafcfb23b2da7f5a51
1 // { dg-do run  }
2 extern "C" void abort();
4 template <void* P>
5 void f(int j);
7 template <int I>
8 void f(int j);
11 template <void* P>
12 void f(int j)
14   abort();
18 template <int I>
19 void f(int j)
24 int main()
26   f<3>(7);