| 4 | #include <string> |
| 5 | |
| 6 | struct NotCopyable { |
| 7 | NotCopyable() = default; |
| 8 | NotCopyable(const NotCopyable&) = delete; |
| 9 | NotCopyable(NotCopyable&&) = default; |
| 10 | }; |
| 11 | |
| 12 | struct Resources { |
| 13 | int fileDescriptor; |
nothing calls this directly
no outgoing calls
no test coverage detected