| 80 | } |
| 81 | |
| 82 | struct NotCopyable { |
| 83 | NotCopyable(const NotCopyable&) = delete; |
| 84 | NotCopyable& operator=(const NotCopyable&) = delete; |
| 85 | }; |
| 86 | |
| 87 | struct Not_TriviallyDestructible { |
| 88 | ~Not_TriviallyDestructible() {} |
nothing calls this directly
no outgoing calls
no test coverage detected