OSDN Git Service

* g++.dg/parse/attr-externally-visible-1.C: Likewise.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / overload / using1.C
1 void f();
2
3 namespace N { 
4   using ::f;
5 }
6
7 bool b;
8
9 void g() {
10   b = N::f == ::f;
11 }