| 5 | #include <vector> |
| 6 | |
| 7 | class Keeper { |
| 8 | std::vector<int> data{2, 3, 4}; |
| 9 | |
| 10 | public: |
| 11 | ~Keeper() { std::cout << "dtor\n"; } |
| 12 | |
| 13 | auto& items() { return data; } |
| 14 | }; |
| 15 | |
| 16 | Keeper GetKeeper() |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected