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