Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / spec9.C
blobe2c5b4e5296b748764e3b22d7dace0d8851229fd
1 // { dg-do assemble  }
2 extern "C" void abort();
4 template <class T>
5 inline int f(T t) 
7   return 0;
10 int main()
12   if (!f(3))
13     abort();
16 template <>
17 int f(int i)   // { dg-error "specialization\[^\n\]*after instantiation" }
19   return 1;