Searched refs:NTMove (Results 1 – 1 of 1) sorted by relevance
50 struct NTMove { struct51 constexpr NTMove(int v) : value(v) {} in NTMove() argument52 NTMove(const NTMove &) = delete;53 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } in NTMove() function57 static_assert(!std::is_trivially_move_constructible<NTMove>::value, ""); argument58 static_assert(std::is_move_constructible<NTMove>::value, "");150 using V = std::variant<int, NTMove>; in test_move_ctor_sfinae()