// PR c++/50086 // { dg-options -std=c++0x } template void tfun(); template void fun1(T); template void fun2(Types... args); int main() { fun1(tfun); // ok fun2(tfun); // error: unresolved overloaded function type }