| 15 | virtual ~VirtBase() = default; |
| 16 | VirtBase(const VirtBase &) = delete; |
| 17 | virtual int get_code() { return 100; } |
| 18 | }; |
| 19 | |
| 20 | using VirtBaseSH = VirtBase<0>; // for testing with py::smart_holder |
nothing calls this directly
no outgoing calls
no test coverage detected