Searched refs:NotCopyConstructible (Results 1 – 1 of 1) sorted by relevance
67 struct NotCopyConstructible struct70 NotCopyConstructible() = default; argument71 NotCopyConstructible(NotCopyConstructible && /*unused*/) noexcept : v(op::moved) {} in NotCopyConstructible() argument72 NotCopyConstructible(const NotCopyConstructible & /*unused*/) = delete;73 NotCopyConstructible &operator=(const NotCopyConstructible &) = delete;74 NotCopyConstructible &operator=(NotCopyConstructible &&) = delete;75 ~NotCopyConstructible() = default;92 …static_assert(!std::is_copy_constructible<out::result<NotCopyConstructible>>::value, "result<NotCo…93 …static_assert(!std::is_constructible<out::result<NotCopyConstructible>, const NotCopyConstructible…