| 1 | // cmdlineinsights:-edu-show-cfront |
| 2 | |
| 3 | class Apple |
| 4 | { |
| 5 | public: |
| 6 | Apple(){}; |
| 7 | |
| 8 | Apple(int x) |
| 9 | : mX{x} |
| 10 | { |
| 11 | } |
| 12 | |
| 13 | ~Apple() { mX = 5; } |
| 14 | |
| 15 | Apple(const Apple&) {} |
| 16 | |
| 17 | private: |
| 18 | int mX{}; |
| 19 | }; |
| 20 | |
| 21 | int main() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected