Searched refs:ThrowsCtorT (Results 1 – 1 of 1) sorted by relevance
42 struct ThrowsCtorT { struct43 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() argument44 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =() argument62 struct ThrowsCtorT { struct64 ThrowsCtorT() : value(0) {} in ThrowsCtorT() function65 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument66 ThrowsCtorT &operator=(int v) noexcept { in operator =() argument121 using V = std::variant<Dummy, ThrowsCtorT>; in test_T_assignment_noexcept()196 using V = std::variant<std::string, ThrowsCtorT>; in test_T_assignment_performs_construction()220 using V = std::variant<ThrowsCtorT>; in test_T_assignment_performs_assignment()[all …]