Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit6.C
blobea1f97a742aabdbcfe80d01592453ef92e7f7394
1 // { dg-do link  }
2 // { dg-options "-ansi -pedantic-errors -w" }
3 // GROUPS passed templates
4 template <class T>
5 int foo(T t);
7 template <>
8 int foo(int i) { return 0; }
10 int main()
12   return foo<int>(3.0);