http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46841
janus at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2010.12.07 19:44:18 Ever Confirmed|0 |1 --- Comment #3 from janus at gcc dot gnu.org 2010-12-07 19:44:18 UTC --- Confirmed. Slightly reduced test case: 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