aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/scoping17.C
blob: a05acef3d91be5a1f365663419826e2f5b306f65 (plain)
1
2
3
4
5
6
7
8
// Test that the integer hides the struct in block scope.

main ()
{
  int A;
  struct A { };
  A = 1;
}