| 481 | public: |
| 482 | using A_Repeat::A_Repeat; |
| 483 | int unlucky_number() override { PYBIND11_OVERRIDE_PURE(int, A_Repeat, unlucky_number, ); } |
| 484 | std::string say_something(unsigned times) override { |
| 485 | PYBIND11_OVERRIDE(std::string, A_Repeat, say_something, times); |
| 486 | } |
| 487 | }; |
| 488 | class PyB_Repeat : public B_Repeat { |
| 489 | public: |
no test coverage detected