blob: 9e032326e09ebbf8d12f1444cf31cf30efb0efed [file] [log] [blame]
// PR c++/79420
template<int> int f ()
{
return f.x; // { dg-error "overloaded function with no contextual type information" }
}
void g ()
{
f<0> ();
}