https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119144
--- Comment #7 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jonathan Wakely <r...@gcc.gnu.org>: https://gcc.gnu.org/g:d2b022e38a778d64350f4d4236a2c8a36e0e621c commit r15-7863-gd2b022e38a778d64350f4d4236a2c8a36e0e621c Author: Jonathan Wakely <jwak...@redhat.com> Date: Thu Mar 6 16:04:05 2025 +0000 libstdc++: Fix failures in new std::complex test [PR119144] This test fails due to duplicate explicit instantiations on targets where size_t and unsigned int are the same type. It also fails with -D_GLIBCXX_USE_CXX11_ABI=0 due to using std::string in constexpr functions, and with --disable-libstdcxx-pch due to not including <algorithm> for ranges::fold_left. libstdc++-v3/ChangeLog: PR libstdc++/119144 * testsuite/26_numerics/complex/tuple_like.cc: Include <algorithm>, replace std::string with std::string_view, instantiate tests for long instead of size_t.