Home
last modified time | relevance | path

Searched refs:NotCopyConstructible (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/outcome/test/tests/
Dissue0140.cpp67 struct NotCopyConstructible struct
70 NotCopyConstructible() = default; argument
71 NotCopyConstructible(NotCopyConstructible && /*unused*/) noexcept : v(op::moved) {} in NotCopyConstructible() argument
72 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