https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93339
G. Steinmetz <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz <[email protected]> --- This slightly modified variant compiles : $ cat z2.f90 program p type t character(:), allocatable :: a(:) end type type(t) :: x associate (y => x%a) associate (z => y) end associate end associate end
