Home
last modified time | relevance | path

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

/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DTryTest.cpp49 class MoveConstructOnly { class
51 MoveConstructOnly() = default;
52 MoveConstructOnly(const MoveConstructOnly&) = delete;
53 MoveConstructOnly(MoveConstructOnly&&) = default;
58 mutable MoveConstructOnly val;
392 auto val = MoveConstructOnly(std::move(t).value().val); in TEST()
780 EXPECT_FALSE(std::is_copy_constructible<Try<MoveConstructOnly>>::value); in TEST()