aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_1.f90
blob: 635727b6630f4360dd7a66fd9b4cb599ded437da (plain)
1
2
3
4
5
6
7
8
9
10
!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