(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
lookup7.C
// { dg-do run  }
// Test for handling of type shadowing in function scope.

int main()
{
  int A = 42;
  struct A
  {
    enum { a };
  };
  A = A::a;
  return A;
}