| 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") |
| 56 | .def(py::init<>()) |
no outgoing calls
no test coverage detected