[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Semantics / definable03.f90
blob736a22fa3e5f5ce112ca7991e091d9cbc0ccc458
1 ! RUN: %python %S/test_errors.py %s %flang_fc1
2 subroutine sub(j)
3 integer, intent(in) :: j
4 !ERROR: 'j' may not be used as a DO variable
5 !BECAUSE: 'j' is an INTENT(IN) dummy argument
6 do j = 1, 10
7 end do
8 end