URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [compile/] [gen_interf.f90] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test generic interfaces.
program gen_interf
implicit none
interface gen
function ifn (a)
integer :: a, ifn
end function
end interface
interface gsub
subroutine igsub (a)
integer a
end subroutine
end interface
integer i
call gsub (i)
i = gen(i)
end program
Go to most recent revision | Compare with Previous | Blame | View Log