Searched refs:ThrowsCtorT (Results 1 – 2 of 2) sorted by relevance
42 struct ThrowsCtorT { struct43 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function44 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 …]
40 struct ThrowsCtorT { struct41 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() argument42 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =() argument60 struct ThrowsCtorT { struct62 ThrowsCtorT() : value(0) {} in ThrowsCtorT() function63 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument64 ThrowsCtorT &operator=(int v) noexcept { in operator =() argument119 using V = std::variant<Dummy, ThrowsCtorT>; in test_T_assignment_noexcept()253 using V = std::variant<std::string, ThrowsCtorT>; in test_T_assignment_performs_construction()277 using V = std::variant<ThrowsCtorT>; in test_T_assignment_performs_assignment()[all …]