1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
! 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