| 50 | void addChild(Child *) {} |
| 51 | Child *returnChild() { return new Child(); } |
| 52 | Child *returnNullChild() { return nullptr; } |
| 53 | static Child *staticFunction(Parent *) { return new Child(); } |
| 54 | }; |
| 55 | py::class_<Parent>(m, "Parent") |
nothing calls this directly
no outgoing calls
no test coverage detected