(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
overload/
using1.C
void f();

namespace N { 
  using ::f;
}

bool b;

void g() {
  b = N::f == ::f;
}