| 304 | // https://github.com/pybind/pybind11/pull/3402#issuecomment-963341987 |
| 305 | |
| 306 | struct first_arg_kw_only {}; |
| 307 | py::class_<first_arg_kw_only>(m, "first_arg_kw_only") |
| 308 | .def(py::init([](int) { return first_arg_kw_only(); }), |
| 309 | py::kw_only(), // This being before any args was broken |
no outgoing calls