Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
H A Dmove.pass.cpp47 struct NTMove { struct
48 constexpr NTMove(int v) : value(v) {} in NTMove() argument
50 NTMove(NTMove&& that) : value(that.value) { that.value = -1; } in NTMove() argument
54 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument