FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / overload5.C
blob24a0a6df4daeb7042b2cd0dd4a53630659f86434
1 // Build don't link:
2 namespace A{
3   void f(){}        
6 using A::f;
8 void f(int);
9 void f(){}            // ERROR - conflict
11 void g()
13   f(4);