https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78557
janus at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |ice-on-valid-code
CC| |janus at gcc dot gnu.org
Summary|[7 Regression] ICE in |[7 Regression] [OOP] ICE in
|trans-expr.c with |trans-expr.c with
|-fcheck=all |-fcheck=mem
--- Comment #4 from janus at gcc dot gnu.org ---
Reduced test case:
implicit none
type :: t1
logical, allocatable :: flag
end type
class(t1), dimension(:), allocatable :: sf_int
allocate (t1 :: sf_int (2))
end