OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping17.C
1 // { dg-do run  }
2 // Test that the integer hides the struct in block scope.
3
4 int main ()
5 {
6   int A;
7   struct A { };
8   A = 1;
9 }