https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124208
Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed| |2026-02-23
Status|UNCONFIRMED |NEW
Ever confirmed|0 |1
--- Comment #5 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
If I do this to fix the errors:
implicit none
integer :: arr(4)
integer :: i
do concurrent (i=1:5)
associate (a=>i)
forall( a=1:10,arr(a)==0)
end forall
end associate
end do
end
gfortran 15 compiles and runs it.
gfortran gives the ICE trying to compile it.
Likewise for the case in Comment #3