OSDN Git Service

fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / using2.C
1 // Build don't link:
2 struct X{
3   void f();        
4 };
5
6 struct Y:X{
7   void f(int);
8   void f();
9   using X::f;
10 };