| 260 | // #511: problem with inheritance + overwritten def_static |
| 261 | struct MyBase { |
| 262 | static std::unique_ptr<MyBase> make() { return std::unique_ptr<MyBase>(new MyBase()); } |
| 263 | }; |
| 264 | |
| 265 | struct MyDerived : MyBase { |
no outgoing calls
no test coverage detected