defined_type_1.f90   [plain text]


!This used to ICE as we chose the wrong type for the
! temporary to hold type%var
! fortran/18157
program testcase_fold
  type :: struct                            
     real      :: var       ! its julian sec  
  end type struct
  type(struct), dimension(:), pointer :: mystruct
  mystruct(:)%var = mystruct(:)%var
END Program testcase_fold