[Bug fortran/77940] ICE in walk_coarray, at fortran/trans-array.c:6684
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77940 Martin Liška changed: What|Removed |Added Keywords||ice-on-invalid-code Status|UN
[Bug fortran/77940] ICE in walk_coarray, at fortran/trans-array.c:6684
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77940 --- Comment #1 from Gerhard Steinmetz --- For completeness : $ cat y1.f90 module m type t end type contains subroutine s1(x) type(t) :: x[*] end subroutine s2(x) type(t) :: x(2) call s1(x(1)) end end $ gf