https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93339
G. Steinmetz <gs...@t-online.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz <gs...@t-online.de> --- 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