1 void f();
2 
3 namespace N {
4   using ::f;
5 }
6 
7 bool b;
8 
g()9 void g() {
10   b = N::f == ::f;
11 }
12