| 15 | }; |
| 16 | |
| 17 | class Derived : private Base { |
| 18 | public: |
| 19 | using Base::f; |
| 20 | // void f() { cout << "Derived::f()" << endl; } |
| 21 | |
| 22 | void f(int n) { |
| 23 | cout<<"Derived::f(int)"<<endl; |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | int main() |
| 28 | { |
nothing calls this directly
no outgoing calls
no test coverage detected