https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84218
Neil Carlson <neil.n.carlson at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |neil.n.carlson at gmail dot com
--- Comment #2 from Neil Carlson <neil.n.carlson at gmail dot com> ---
Note that the DATA statement
data (x(j:i), i=1,2,2) /'a'/
is not valid Fortran. Implied do objects, here x(j:i), are restricted by R538
(F08) to array elements, scalar structure component, or an implied-do. x(j:i)
is an array section not an array element. But this may be a language extension
that gfortran supports.