blob: b12b8bb60720617911615d9088b8e41b070e0ca0 [file] [log] [blame]
! RUN: %S/test_any.sh %s %t %f18
! Error test -- DO loop uses obsolete loop termination statement
! See R1131 and C1131
! EXEC: ${F18} -funparse-with-symbols -Mstandard %s 2>&1 | ${FileCheck} %s
! CHECK: A DO loop should terminate with an END DO or CONTINUE
program endDo
do 10 i = 1, 5
10 print *, "in loop"
end program endDo