blob: fd8f512f57f8d3b4e4816ce6f3fd1515e74f024d [file] [log] [blame]
// Test that a local declaration of one of a global overload set works
int f () { return 0; }
int f (int);
int main ()
{
int f ();
return f ();
}