blob: 4b230453867488b45658c9cebed84abfc2f51b93 [file] [log] [blame]
// PR c++/13970
struct X
{
template< typename Z > Z Zunc()
{
return Z();
}
template< typename Z > void Zinc()
{
}
void tst()
{
Zunc<int>();
Zinc<int>( //);
// }
}; // { dg-error "" }