OSDN Git Service

* typeck2.c (abstract_virtual_errors): Reword diagnostics, make them
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / local4.C
1 // { dg-do run  }
2 // Test that a local declaration of one of a global overload set works
3
4 int f () { return 0; }
5 int f (int);
6
7 int main ()
8 {
9   int f ();
10   return f ();
11 }