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
[llvm][Docs] Update supported hardware (#121743)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
implicit02.f90
blob
6e793faed89617b286c2748502516eca6078d964
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
subroutine
s1
3
implicit none
4
!ERROR: IMPLICIT statement after IMPLICIT NONE or IMPLICIT NONE(TYPE) statement
5
implicit integer
(
a
-
z
)
6
end subroutine
7
8
subroutine
s2
9
implicit none
(
type
)
10
!ERROR: IMPLICIT statement after IMPLICIT NONE or IMPLICIT NONE(TYPE) statement
11
implicit integer
(
a
-
z
)
12
end subroutine