rt_gccstream/gcc/testsuite/g++.dg/overload/using1.C

12 lines
83 B
C

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