OSDN Git Service

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