http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57117
janus at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |janus at gcc dot gnu.org Summary|CLASS(*): ICE for sourced |[OOP] ICE for sourced |allocation of a UP entity |allocation of a polymorphic |that uses the transpose |entity using TRANSPOSE |intrinsic | --- Comment #2 from janus at gcc dot gnu.org 2013-04-30 12:22:40 UTC --- Also this one can be triggered without UP: implicit none type :: ti end type class(ti), allocatable :: x(:,:), y(:,:) allocate(y(3,3), source=transpose(x)) end