| 98 | } |
| 99 | |
| 100 | struct NotCopyable { |
| 101 | NotCopyable(const NotCopyable&) = delete; |
| 102 | NotCopyable& operator=(const NotCopyable&) = delete; |
| 103 | }; |
| 104 | |
| 105 | struct Not_TriviallyDestructible { |
| 106 | ~Not_TriviallyDestructible() {} |
nothing calls this directly
no outgoing calls
no test coverage detected