https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97589

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #12 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Reduced test case:

program main
  type global_model_state
     real, allocatable :: ps(:)  [:]
  end type global_model_state
  type (global_model_state) :: ms_full
  allocate (ms_full % ps(100) [*])
  ms_full %ps = 42.
end program main

Reply via email to