| 71 | #endif |
| 72 | |
| 73 | struct NotCopyable { |
| 74 | NotCopyable(const NotCopyable&) = delete; |
| 75 | NotCopyable& operator=(const NotCopyable&) = delete; |
| 76 | }; |
| 77 | |
| 78 | struct Not_TriviallyDestructible { |
| 79 | ~Not_TriviallyDestructible() {} |
nothing calls this directly
no outgoing calls
no test coverage detected