return by pointer
| 63 | const ExampleMandA &self3() const { return *this; } // return by const reference |
| 64 | ExampleMandA *self4() { return this; } // return by pointer |
| 65 | const ExampleMandA *self5() const { return this; } // return by const pointer |
| 66 | |
| 67 | int internal1() const { return value; } // return by value |
| 68 | int &internal2() { return value; } // return by reference |
no outgoing calls
no test coverage detected