Searched defs:MoveThrows (Results 1 – 6 of 6) sorted by relevance
33 struct MoveThrows { struct35 MoveThrows() { ++alive; } in MoveThrows() argument36 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows() function37 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() function38 MoveThrows& operator=(MoveThrows const&) { return *this; } in operator =() argument39 MoveThrows& operator=(MoveThrows&&) { throw 42; } in operator =() argument40 ~MoveThrows() { --alive; } in ~MoveThrows() argument
43 struct MoveThrows { struct45 MoveThrows() { ++alive; } in MoveThrows() argument46 MoveThrows(MoveThrows const&) {++alive;} in MoveThrows() function47 MoveThrows(MoveThrows&&) { throw 42; } in MoveThrows() function50 ~MoveThrows() { --alive; } in ~MoveThrows() argument
159 struct MoveThrows { struct161 MoveThrows() { ++alive; } in MoveThrows() argument162 MoveThrows(const MoveThrows &) { ++alive; } in MoveThrows() argument163 MoveThrows(MoveThrows &&) { throw 42; } in MoveThrows() argument164 MoveThrows &operator=(const MoveThrows &) { return *this; } in operator =() argument165 MoveThrows &operator=(MoveThrows &&) { throw 42; } in operator =() argument166 ~MoveThrows() { --alive; } in ~MoveThrows() argument
171 struct MoveThrows { struct173 MoveThrows() { ++alive; } in MoveThrows() argument174 MoveThrows(const MoveThrows &) { ++alive; } in MoveThrows() argument175 MoveThrows(MoveThrows &&) { throw 42; } in MoveThrows() argument176 MoveThrows &operator=(const MoveThrows &) { return *this; } in operator =() argument177 MoveThrows &operator=(MoveThrows &&) { throw 42; } in operator =() argument178 ~MoveThrows() { --alive; } in ~MoveThrows() argument
201 struct MoveThrows { in TEST() struct202 MoveThrows(MoveThrows&&) noexcept(false) {} in TEST() function203 MoveThrows& operator=(MoveThrows&&) noexcept(false) { return *this; } in TEST()
206 struct MoveThrows { in TEST() struct207 MoveThrows(MoveThrows&&) noexcept(false) {} in TEST() argument208 MoveThrows& operator=(MoveThrows&&) noexcept(false) { return *this; } in TEST()