https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103473
G. Steinmetz <gs...@t-online.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code --- Comment #1 from G. Steinmetz <gs...@t-online.de> --- No ICE : $ cat z2.f90 subroutine s integer, parameter :: a(+'1') = 1 print *, minloc(a) print *, maxloc(a) end $ cat z3.f90 subroutine s integer, parameter :: a(+'1') = [1] print *, rank(a) print *, sum(a) end