Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
Dcopy.pass.cpp160 struct CopyCannotThrow { struct
162 CopyCannotThrow() { ++alive; } in CopyCannotThrow() argument
163 CopyCannotThrow(const CopyCannotThrow &) noexcept { ++alive; } in CopyCannotThrow() function
164 CopyCannotThrow(CopyCannotThrow &&) noexcept { assert(false); } in CopyCannotThrow() function
166 CopyCannotThrow &operator=(CopyCannotThrow &&) noexcept { assert(false); return *this; } in operator =() argument
/external/cronet/third_party/libc++/src/test/std/utilities/variant/variant.variant/variant.assign/
Dcopy.pass.cpp146 struct CopyCannotThrow { struct
148 CopyCannotThrow() { ++alive; } in CopyCannotThrow() argument
149 CopyCannotThrow(const CopyCannotThrow &) noexcept { ++alive; } in CopyCannotThrow() argument
150 CopyCannotThrow(CopyCannotThrow &&) noexcept { assert(false); } in CopyCannotThrow() function
152 CopyCannotThrow &operator=(CopyCannotThrow &&) noexcept { assert(false); return *this; } in operator =() argument