| 287 | // test_function_signatures (along with most of the above) |
| 288 | struct KWClass { |
| 289 | void foo(int, float) {} |
| 290 | }; |
| 291 | py::class_<KWClass>(m, "KWClass") |
| 292 | .def("foo0", &KWClass::foo) |
nothing calls this directly
no outgoing calls
no test coverage detected