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] Fix Maintainers.md formatting (NFC)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
implicit13.f90
blob
0258de74f3e0ba62eb67e751046da74fde875c51
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
!ERROR: No explicit type declared for 'func'
3
!ERROR: No explicit type declared for 'obj'
4
subroutine
implicit_none
(
func
,
sub
,
obj
)
5
implicit none
6
call
sub
! ok
7
print
*,
func
()
8
print
*,
obj
9
end