1 // { dg-do assemble } 2 struct X{ 3 void f(); 4 }; 5 6 struct Y:X{ 7 void f(int); 8 void f(); 9 using X::f; 10 }; 11