| 16 | |
| 17 | struct CppDrvd : CppBase { |
| 18 | explicit CppDrvd(int value) : CppBase(value), drvd_value(value * 3) {} |
| 19 | int get_drvd_value() const { return drvd_value; } |
| 20 | void reset_drvd_value(int new_value) { drvd_value = new_value; } |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected