Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / spec7.C
blob81be8f1d55165fd31b747e7ba40dc7efea51e4a2
1 // { dg-do run  }
2 extern "C" void abort();
4 template <class T>
5 void f(T t1, T t2);
7 template <>
8 void f(int i, int j) 
10   abort();
13 void f(short s, char c)
17 int main()
19   f(3, 'c');