2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping11.C
blob9a3717d57bb082214d74ca82b7210dd91459dd69
1 // { dg-do assemble  }
3 void f ();
4 void g ()
6   int f;
7   {
8     void f ();
9     f ();                       // { dg-bogus "" } trying to call integer
10   }