You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
293 B

! Error test -- DO loop uses obsolete loop termination statement
! See R1131 and C1131
! RUN: %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