| 3 | |
| 4 | struct Foo { |
| 5 | Foo() { std::cout << "Foo::Foo" << std::endl; } |
| 6 | ~Foo() { std::cout << "Foo::~Foo" << std::endl; } |
| 7 | void foo() { std::cout << "Foo::foo" << std::endl; } |
| 8 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected