OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / non-dependent5.C
1 // PR c++/15299
2
3 template <class T>  void fun_ptr(T (*)()); 
4 template <class T>  T    bar(); 
5  
6 template <class> void foo () { 
7   fun_ptr(bar<int>); 
8