| 370 | public: |
| 371 | using OverrideTest::OverrideTest; |
| 372 | std::string str_value() override { |
| 373 | PYBIND11_OVERRIDE(std::string, OverrideTest, str_value); |
| 374 | } |
| 375 | // Not allowed (enabling the below should hit a static_assert failure): we can't get a |
| 376 | // reference to a python numeric value, since we only copy values in the numeric type |
| 377 | // caster: |
nothing calls this directly
no test coverage detected