2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / local4.C
blobb5514a54b46de6203d1425be916d13bfeae59a89
1 // { dg-do run  }
2 // Test that a local declaration of one of a global overload set works
4 int f () { return 0; }
5 int f (int);
7 int main ()
9   int f ();
10   return f ();