1 // { dg-do run  }
2 // Test that a local declaration of one of a global overload set works
3 
f()4 int f () { return 0; }
5 int f (int);
6 
main()7 int main ()
8 {
9   int f ();
10   return f ();
11 }
12