Searched defs:MoveThrows (Results 1 – 2 of 2) sorted by relevance
31 struct MoveThrows { struct33 MoveThrows() { ++alive; } in MoveThrows() argument34 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows() argument35 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() function38 ~MoveThrows() { --alive; } in ~MoveThrows() argument
180 struct MoveThrows { struct182 MoveThrows() { ++alive; } in MoveThrows() argument183 MoveThrows(const MoveThrows&) { ++alive; } in MoveThrows() function184 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() function185 MoveThrows& operator=(const MoveThrows&) { return *this; } in operator =() argument186 MoveThrows& operator=(MoveThrows&&) { throw 42; } in operator =() argument187 ~MoveThrows() { --alive; } in ~MoveThrows() argument