Searched defs:ThrowsCtorTandMove (Results 1 – 1 of 1) sorted by relevance
78 struct ThrowsCtorTandMove { struct79 int value;80 ThrowsCtorTandMove() : value(0) {} in ThrowsCtorTandMove() argument81 ThrowsCtorTandMove(int) noexcept(false) { throw 42; } in ThrowsCtorTandMove() function82 ThrowsCtorTandMove(ThrowsCtorTandMove&&) noexcept(false) { assert(false); } in ThrowsCtorTandMove() argument83 ThrowsCtorTandMove& operator=(int v) noexcept { in operator =()