https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93485
G. Steinmetz <gs...@t-online.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz <gs...@t-online.de> --- This (no ac) seems to be accepted : $ cat z3.f90 program p integer :: n = 2 associate (i => n) print *, (i, i=1,n) end associate end $ gfortran-10-20200126 z3.f90 && ./a.out 1 2 $