Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
H A Dswap.pass.cpp69 struct NothrowTypeImp { struct
75 constexpr NothrowTypeImp(int v, int* mv_ctr, int* mv_assign, int* swap) in NothrowTypeImp() argument
78NothrowTypeImp(const NothrowTypeImp& o) noexcept(NT_Copy) : value(o.value) { assert(false); } // n… in NothrowTypeImp() function
80 constexpr NothrowTypeImp(NothrowTypeImp&& o) noexcept(NT_Move) in NothrowTypeImp() function
90 NothrowTypeImp& operator=(const NothrowTypeImp&) noexcept(NT_CopyAssign) { in operator =() argument
95 constexpr NothrowTypeImp& operator=(NothrowTypeImp&& o) noexcept(NT_MoveAssign) { in operator =() argument