Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
H A Dswap.pass.cpp144 struct ThrowsOnSecondMove { struct
147 ThrowsOnSecondMove(int v) : value(v), move_count(0) {} in ThrowsOnSecondMove() function
148ThrowsOnSecondMove(ThrowsOnSecondMove&& o) noexcept(false) : value(o.value), move_count(o.move_cou… in ThrowsOnSecondMove() argument
153 ThrowsOnSecondMove& operator=(ThrowsOnSecondMove&&) { in operator =() argument