brintos

brintos / llvm-project-archived public Read only

0
0
Text · 215 B · 736a22f Raw
9 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12subroutine sub(j)3  integer, intent(in) :: j4  !ERROR: 'j' may not be used as a DO variable5  !BECAUSE: 'j' is an INTENT(IN) dummy argument6  do j = 1, 107  end do8end9