https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105954
G. Steinmetz <gs...@t-online.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz <gs...@t-online.de> --- For reference : $ cat zz1.f90 program p real :: a(3,2:-1) real :: b(3,2:0) print *, size(a), sizeof(a) print *, size(b), sizeof(b) end $ gfortran-13-20220612 zz1.f90 ; a.out 0 0 0 0