Home
last modified time | relevance | path

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

/external/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
Dmove.pass.cpp54 struct NTMove { struct
55 constexpr NTMove(int v) : value(v) {} in NTMove() argument
57 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function
61 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument
/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
60 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function
64 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument