Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / explicit28.C
blob79d8dd01d073bdc10684a0490364019b845469a6
1 // { dg-do link  }
2 // GROUPS passed templates
3 template <class T>
4 int foo(T t) { return 1; }
6 template <>
7 int foo(int i) { return 0; }
9 int main()
11   return (*((int (*)(int)) &foo<int>))(3);