Searched refs:ThrowsCtorT (Results 1 – 1 of 1) sorted by relevance
34 struct ThrowsCtorT { struct35 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function36 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =() argument54 struct ThrowsCtorT { struct56 ThrowsCtorT() : value(0) {} in ThrowsCtorT() argument57 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument58 ThrowsCtorT &operator=(int v) noexcept { in operator =() argument91 using V = std::variant<Dummy, ThrowsCtorT>; in test_T_assignment_noexcept()166 using V = std::variant<std::string, ThrowsCtorT>; in test_T_assignment_performs_construction()188 using V = std::variant<ThrowsCtorT>; in test_T_assignment_performs_assignment()[all …]