OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit27.C
1 // { dg-do link  }
2 // GROUPS passed templates
3 template <class T>
4 void foo(T t);
5
6 template <>
7 void foo(int i) {}
8
9 int main()
10 {
11   (void (*)(int)) &foo<int>;
12 }