1 // { dg-do run  }
2 // Test that the integer hides the struct in block scope.
3 
main()4 int main ()
5 {
6   int A;
7   struct A { };
8   A = 1;
9 }
10