| 68 | |
| 69 | struct MyStruct : MyParent { |
| 70 | MyStruct(int& value) : MyParent::MyParent{value, 4, 5, 7}, value(value) { |
| 71 | increment_in_dtor = &value; |
| 72 | } |
| 73 | |
| 74 | ~MyStruct() { |
| 75 | value = convert(static_cast<float>(value)); |
nothing calls this directly
no outgoing calls
no test coverage detected