http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50174
janus at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |janus at gcc dot gnu.org
Summary|internal compiler error: |[4.7 Regression] ICE on
|derived type allocation |derived type allocation
--- Comment #1 from janus at gcc dot gnu.org 2011-08-24 11:34:30 UTC ---
Confirmed on 4.7 trunk. Works on 4.6.
Reduced test case:
implicit none
type settee
real,allocatable :: seat(:)
end type settee
integer :: is = 1, ie = 3
type(settee),allocatable :: set1(:)
allocate (set1(is:ie))
end