(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
name-clash14.C
const int x = 24;
struct A
{
  struct B
  {
    enum { E = x };
  };
  static const int x = 42;	// { dg-error "changes meaning" }
};