blob: 492ce2b7e7079a756e53114f233b8be18e510f21 [file] [log] [blame]
// { dg-do run }
// Test that a local declaration of one of a global overload set works
int f () { return 0; }
int f (int);
int main ()
{
int f (); // { dg-warning "empty parentheses" }
return f ();
}