Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
do_subscript_4.f90
blob: c773fe75aff0f779e057b313fe9a5a315d2528c1 [
file
] [
log
] [
blame
]
!
{
dg
-
do
compile
}
!
PR
91424
-
this
used to warn although the DO loop
is
zero trip
.
program main
implicit
none
integer
::
i
real
::
a
(
2
)
do
i
=
1
,
3
,-
1
a
(
i
)
=
2.
end
do
print
*,
a
end
program main