| 13 | struct Foo { |
| 14 | std::string history; |
| 15 | explicit Foo(const std::string &history_) : history(history_) {} |
| 16 | Foo(const Foo &other) : history(other.history + "_CpCtor") {} |
| 17 | Foo(Foo &&other) noexcept : history(other.history + "_MvCtor") {} |
| 18 | Foo &operator=(const Foo &other) { |
nothing calls this directly
no outgoing calls
no test coverage detected