URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [compile/] [actual.f90] - Rev 303
Compare with Previous | Blame | View Log
module modullcontainsfunction fun( a )real, intent(in) :: areal :: funfun = aend function funend module modullprogram t5use modullreal :: a, bb = foo( fun, a )containsfunction foo( f, a )real, intent(in) :: ainterfacefunction f( x )real, intent(in) :: xreal :: fend function fend interfacereal :: foofoo = f( a )end function fooend program t5
