| 57 | void add10(const int *other) { value += *other; } // passing by const pointer |
| 58 | |
| 59 | void consume_str(std::string &&) {} |
| 60 | |
| 61 | ExampleMandA self1() { return *this; } // return by value |
| 62 | ExampleMandA &self2() { return *this; } // return by reference |
nothing calls this directly
no outgoing calls
no test coverage detected