FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / overload3.C
blob1e0143a707d8707f4f9963c21ae972af5ed10c2d
1 // Build don't link:
3 namespace A{
4   void f();
7 using A::f;
9 namespace A{
10   void f(int);
13 using A::f;
15 void g()
17   f(4);