blob: f660d8c47598a351aa206c6449eb342d804e20ef [file] [log] [blame]
! Check that nested DO loop doesn't affect refactoring
! behavior. Select inner DO loop - REAL data type
! and decrement behavior - explicit step count.
PROGRAM NestedDoRealInnerDecrement
REAL :: counter, sum, counterin, sumin
sum = 0.0
sumin = 0.0
DO counter = 1.2, 1.8, 0.1
sum = sum + counter
DO counterin = 1.8, 1.2, 0.1 !<<<<< 11, 5, 11, 33, 0, pass
sumin = sumin + counterin
END DO
END DO
PRINT *, sum
END PROGRAM NestedDoRealInnerDecrement