FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping17.C
blob26fb45656dac3e6f4ed40ec990aca80370f2ab95
1 // Test that the integer hides the struct in block scope.
3 int main ()
5   int A;
6   struct A { };
7   A = 1;