blob: bd6ce6b47588a489387cfab37cd619ad2a5fe730 [file] [log] [blame]
// PR c++/15299
template <class T> void fun_ptr(T (*)());
template <class T> T bar();
template <class> void foo () {
fun_ptr(bar<int>);
}