| 162 | |
| 163 | struct DispatchIssue : Base { |
| 164 | std::string dispatch() const override { |
| 165 | PYBIND11_OVERRIDE_PURE(std::string, Base, dispatch, /* no arguments */); |
| 166 | } |
| 167 | }; |
| 168 | |
| 169 | // An abstract adder class that uses visitor pattern to add two data |
no test coverage detected