Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit23.C
blobbf6a52632319a73fd3c9f406a64c3d05158dec48
1 // { dg-do link  }
2 // { dg-options "-ansi -pedantic-errors -w" }
3 // GROUPS passed templates
4 template <class T>
5 int foo(T t) { return 1; }
7 template <>
8 int foo<int>(int i) { return 0; }
10 int main()
12   return foo<int>(3.0);