repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016-01-15 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
generic_1.f90
blob
1cbf4bb8cbcb7e11cc12a935fad415f83cb5c31b
1
! { dg-do compile }
2
! reduced testcase from PR 17535
3
module
FOO
4
interface
BAR
5
6
subroutine
BAR1
(
X
)
7
integer
::
X
8
end subroutine
9
10
subroutine
BAR2
(
X
)
11
real
::
X
12
end subroutine
13
14
end interface
15
end module
16
17
subroutine
BAZ
(
X
)
18
use
FOO
19
end subroutine