URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [proc_ptr_12.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
!
! PR 36704: Procedure pointer as function result
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
procedure(integer),pointer :: p
p => foo()
if (p(-1)/=1) call abort
contains
function foo() result(bar)
procedure(integer),pointer :: bar
bar => iabs
end function
end
Go to most recent revision | Compare with Previous | Blame | View Log