brintos

brintos / llvm-project-archived public Read only

0
0
Text · 258 B · b64659a Raw
11 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12!C11323! If the do-stmt is a nonlabel-do-stmt, the corresponding end-do shall be an4! end-do-stmt.5subroutine s1()6  do while (.true.)7    print *, "Hello"8  continue9!ERROR: expected 'END DO'10end subroutine s111