URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [ret_pointer_1.f90] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! Test functions returning array pointers
program ret_pointer_1
integer, pointer, dimension(:) :: a
integer, target, dimension(2) :: b
integer, pointer, dimension (:) :: p
a => NULL()
a => foo()
p => b
if (.not. associated (a, p)) call abort
contains
subroutine bar(p)
integer, pointer, dimension(:) :: p
end subroutine
function foo() result(r)
integer, pointer, dimension(:) :: r
r => b
end function
end program
Go to most recent revision | Compare with Previous | Blame | View Log