(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
lookup8.C
// { dg-do assemble  }

struct S {
  int A;
  struct A {
    enum { a = 0 };
  };

  void f();
};

void S::f() {
  A = A::a;
}