@@ -1253,11 +1253,11 @@ auto test_write_env() -> void {
12531253template <typename ... T>
12541254struct child_sender : test_detail::product_type<T...> {};
12551255auto test_child_type () -> void {
1256- static_assert (std::same_as<int , test_detail::child_type<child_sender<bool , char , int , double >>>);
1257- static_assert (std::same_as<int &, test_detail::child_type<child_sender<bool , char , int , double >>& >);
1258- static_assert (std::same_as<const int &, const test_detail::child_type<child_sender<bool , char , int , double >>& >);
1259- static_assert (std::same_as<int , test_detail::child_type<child_sender<bool , char , int , double >, 0 >>);
1260- static_assert (std::same_as<double , test_detail::child_type<child_sender<bool , char , int , double >, 1 >>);
1256+ static_assert (std::same_as<int && , test_detail::child_type<child_sender<bool , char , int , double >>>);
1257+ static_assert (std::same_as<int &, test_detail::child_type<child_sender<bool , char , int , double >&> >);
1258+ static_assert (std::same_as<const int &, test_detail::child_type<const child_sender<bool , char , int , double >&> >);
1259+ static_assert (std::same_as<int && , test_detail::child_type<child_sender<bool , char , int , double >, 0 >>);
1260+ static_assert (std::same_as<double && , test_detail::child_type<child_sender<bool , char , int , double >, 1 >>);
12611261}
12621262} // namespace
12631263
0 commit comments