| 259 | using SftVirtBase::SftVirtBase; |
| 260 | static std::shared_ptr<SftVirtDerived> create() { return std::make_shared<SftVirtDerived>(); } |
| 261 | std::string name() override { return "SftVirtDerived"; } |
| 262 | }; |
| 263 | struct SftVirtDerived2 : virtual SftVirtDerived { |
| 264 | using SftVirtDerived::SftVirtDerived; |
no outgoing calls
no test coverage detected