OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / spec7.C
1 // { dg-do run  }
2 extern "C" void abort();
3
4 template <class T>
5 void f(T t1, T t2);
6
7 template <>
8 void f(int i, int j) 
9 {
10   abort();
11 }
12
13 void f(short s, char c)
14 {
15 }
16
17 int main()
18 {
19   f(3, 'c');
20 }