2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping17.C
blobc51dbef68fcb40add3ca0d55b54b9cd8222d2a9e
1 // { dg-do run  }
2 // Test that the integer hides the struct in block scope.
4 int main ()
6   int A;
7   struct A { };
8   A = 1;