// PR c++/50086 // { dg-do compile { target c++11 } } template void tfun(); template void fun1(T); template void fun2(Types... args); int main() { fun1(tfun); // ok fun2(tfun); // error: unresolved overloaded function type }