https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120111
kargls at comcast dot net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kargls at comcast dot net --- Comment #1 from kargls at comcast dot net --- This was recently fixed by Jerry. % hotrats:kargl[215] gfortran14 -o z a.f90 && ./z 6*7 = 42 With gfortran 16.0.1 % gfcx -o z a.f90 && ./z At line 3 of file a.f90 (unit = 6, file = 'stdout') Fortran runtime error: Missing comma between descriptors (AI0) ^ % gfcx -o z a.f90 -std=legacy && ./z 6*7 = 42