2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit43.C
blob199bcc137d9314e834286fcc0d5ca2de17c45c4e
1 // { dg-do run  }
2 extern "C" void abort(void);
4 void F(int)
9 void F(double)
11   abort();
14 template <void (*F)(int)> 
15 void g()
17   (*F)(3);
21 int main()
23   g<&F>();