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
Break circular dependency between FIR dialect and utilities
[llvm-project.git]
/
flang
/
test
/
Semantics
/
resolve12.f90
blob
aa9dbd7f00603d909454aa7f20cc46c7a17bd439
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
module
m1
3
end
4
5
subroutine
sub
6
end
7
8
use
m1
9
!ERROR: Cannot read module file for module 'm2': Source file 'm2.mod' was not found
10
use
m2
11
!ERROR: 'sub' is not a module
12
use
sub
13
end