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
[TableGen] Avoid repeated map lookups (NFC) (#126381)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
bug124731.f90
blob
924b41dd1db48cf25cf9947b1bf3219de4e5e381
1
!RUN: %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s --allow-empty
2
!CHECK-NOT: error:
3
module
m1
4
interface
5
module subroutine
foo
6
end
7
end interface
8
real
x
9
end
10
module
m2
11
use
m1
12
end
13
submodule
(
m1
)
sm1
14
use
m2
! ok
15
contains
16
module
procedure foo
17
end
18
end
19
submodule
(
m1
)
sm2
20
contains
21
subroutine
bar
22
use
m2
! ok
23
end
24
end