| 345 | |
| 346 | struct NotCopyable { |
| 347 | NotCopyable() = default; |
| 348 | NotCopyable(NotCopyable const &) = delete; |
| 349 | NotCopyable(NotCopyable &&) = default; |
| 350 | NotCopyable &operator=(NotCopyable const &) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected