MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / Derived

Class Derived

base_code/using_derived.cpp:17–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15};
16
17class Derived : private Base {
18public:
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
27int main()
28{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected