Home
last modified time | relevance | path

Searched defs: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() argument
57 NTCopy(const NTCopy &that) : value(that.value) {} in NTCopy() function
62 static_assert(!std::is_trivially_copy_constructible<NTCopy>::value, ""); argument