URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [proc_ptr_comp_26.f90] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
!
! PR 46841: [F03] ICE on allocating array of procedure pointers
!
! Contributed by Martien Hulsen <m.a.hulsen@tue.nl>
type vfunc_p
procedure (dum_vfunc), pointer, nopass :: p => null()
end type vfunc_p
type(vfunc_p), allocatable, dimension(:) :: vfunc1
allocate(vfunc1(10))
contains
function dum_vfunc ()
real, dimension(2) :: dum_vfunc
dum_vfunc = 0
end function dum_vfunc
end
Go to most recent revision | Compare with Previous | Blame | View Log