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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gfortran.fortran-torture
/
compile
/
gen_interf.f90
blob
eb493411b34e76f27d72331fe81d1664b3895644
1
! Program to test generic interfaces.
2
program
gen_interf
3
implicit none
4
interface
gen
5
function
ifn
(
a
)
6
integer
::
a
,
ifn
7
end function
8
end interface
9
interface
gsub
10
subroutine
igsub
(
a
)
11
integer
a
12
end subroutine
13
end interface
14
15
integer
i
16
17
call
gsub
(
i
)
18
i
=
gen
(
i
)
19
end program