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
/
resolve19.f90
blob
d3bd38dc9c6e59123e21e40b702c8e6e2d654a0f
1
! RUN: %python %S/test_errors.py %s %flang_fc1
2
module
m
3
interface
a
4
subroutine
s
(
x
)
5
real
::
x
6
end subroutine
7
!ERROR: 's' is already declared in this scoping unit
8
subroutine
s
(
x
)
9
integer
::
x
10
end subroutine
11
end interface
12
end module
13
14
module
m2
15
interface
s
16
subroutine
s
(
x
)
17
real
::
x
18
end subroutine
19
!ERROR: 's' is already declared in this scoping unit
20
subroutine
s
(
x
)
21
integer
::
x
22
end subroutine
23
end interface
24
end module
25
26
module
m3
27
interface
s
28
subroutine
s
29
end
30
end interface
31
contains
32
!ERROR: 's' is already declared in this scoping unit
33
subroutine
s
34
end subroutine
35
end