Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
Dcopy.pass.cpp55 struct NTCopy { struct
56 constexpr NTCopy(int v) : value(v) {} in NTCopy() function
57 NTCopy(const NTCopy &that) : value(that.value) {} in NTCopy() function
58 NTCopy(NTCopy &&) = delete;
62 static_assert(!std::is_trivially_copy_constructible<NTCopy>::value, ""); argument
63 static_assert(std::is_copy_constructible<NTCopy>::value, "");
136 using V = std::variant<int, NTCopy>; in test_copy_ctor_sfinae()