| 21 | Example(int value) : value(value) { created++; } |
| 22 | Example(ExampleSrc src) : value(src.value) { created++; } |
| 23 | ~Example() { deleted++; } |
| 24 | |
| 25 | static Example *make(int value) { return new Example(value); } |
| 26 | static std::shared_ptr<Example> make_shared(int value) { |
nothing calls this directly
no outgoing calls
no test coverage detected