Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
Dmove.pass.cpp57 struct NTMove { struct
58 constexpr NTMove(int v) : value(v) {} in NTMove() function
59 NTMove(const NTMove &) = delete;
60 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() argument
64 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument
65 static_assert(std::is_move_constructible<NTMove>::value, "");
157 using V = std::variant<int, NTMove>; in test_move_ctor_sfinae()