| 41 | }; |
| 42 | |
| 43 | struct NotCopyable { |
| 44 | NotCopyable(const NotCopyable&) = delete; |
| 45 | NotCopyable& operator=(const NotCopyable&) = delete; |
| 46 | }; |
| 47 | |
| 48 | struct Not_TriviallyDestructible { |
| 49 | ~Not_TriviallyDestructible() {} |
nothing calls this directly
no outgoing calls
no test coverage detected