(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
koenig10.C
// Test for proper handling of class-scope enums.

struct A
{
  enum E { e };
  friend void f (E);
};

int main()
{
  f(A::e);
}