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
/
modfile38.f90
blob
d2646b6ca6154b0232933a6578d97f8d054ef168
1
! RUN: %python %S/test_modfile.py %s %flang_fc1
2
3
! Ensure that an interface with the same name as a derived type
4
! does not cause that shadowed name to be emitted later than its
5
! uses in the module file.
6
7
module
m
8
type
::
t
9
end type
10
type
::
t2
11
type
(
t
) ::
c
12
end type
13
interface
t
14
module
procedure f
15
end interface
16
contains
17
type
(
t
)
function
f
18
end function
19
end module
20
21
!Expect: m.mod
22
!module m
23
!interface t
24
!procedure::f
25
!end interface
26
!type::t
27
!end type
28
!type::t2
29
!type(t)::c
30
!end type
31
!contains
32
!function f()
33
!type(t)::f
34
!end
35
!end