1 ! C1122 The index-name shall be a named scalar variable of type integer.
2 ! RUN: not %flang_fc1 -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
3 ! CHECK: Must have INTEGER type, but is REAL(4)
5 subroutine do_concurrent_test1(n
)
9 do 20 concurrent (j
= 1:n
)
11 end subroutine do_concurrent_test1