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 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