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
/
implicit03.f90
blob
928829c65137ee6ced20b0ad7f76be3f1ab8a66c
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
subroutine
s1
3
implicit integer
(
a
-
z
)
4
!ERROR: IMPLICIT NONE statement after IMPLICIT statement
5
implicit none
6
end subroutine
7
8
subroutine
s2
9
implicit integer
(
a
-
z
)
10
!ERROR: IMPLICIT NONE(TYPE) after IMPLICIT statement
11
implicit none
(
type
)
12
end subroutine