[Bug fortran/59298] ICE when initialising PARAMETER array of derived-type (containing an array) using array constructor

janus at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Fri Jan 3 11:47:00 GMT 2014


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59298

--- Comment #4 from janus at gcc dot gnu.org ---
Slightly reduced test case:



  implicit none

  type Plane
    integer :: M(1,1)
  end type

  type(Plane), parameter :: planes(1) = [ Plane(1) ]
  integer                :: f(1,1)

  f = (planes(1)%M)

end



More information about the Gcc-bugs mailing list