| 14 | |
| 15 | template<typename T> |
| 16 | optional<T>::optional(const optional<T>&) |
| 17 | requires std::is_copy_constructible_v<T> |
| 18 | {} |
| 19 | |
| 20 | struct NotCopyable { |
| 21 | NotCopyable(const NotCopyable&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected