| 32 | struct Derived : Base {}; |
| 33 | |
| 34 | struct SomeStruct { |
| 35 | int somefield = 0; |
| 36 | |
| 37 | void SomeMethod1(int i) { somefield = i; } |
| 38 | |
| 39 | int SomeMethod2() const { return somefield; } |
| 40 | }; |
| 41 | |
| 42 | void SomeMethod3() { |
| 43 | std::cout << NAMEOF(SomeMethod3) << " no called!" << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected