repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang] Accept polymorphic component element in storage_size
[llvm-project.git]
/
flang
/
test
/
Semantics
/
definable03.f90
blob
736a22fa3e5f5ce112ca7991e091d9cbc0ccc458
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