mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 04:06:46 +00:00

We're letting immutable objects appear as DO index variables; catch and diagnose this error. Differential Revision: https://reviews.llvm.org/D142767
9 lines
215 B
Fortran
9 lines
215 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
subroutine sub(j)
|
|
integer, intent(in) :: j
|
|
!ERROR: 'j' may not be used as a DO variable
|
|
!BECAUSE: 'j' is an INTENT(IN) dummy argument
|
|
do j = 1, 10
|
|
end do
|
|
end
|