aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90
blob: 29515f5561e3d3dabf96e3cd98819909d63dbe2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
!This used to ICE as we chose the wrong type for the
! temporary to hold type%x
! fortran/18157
MODULE bug 
 IMPLICIT NONE 
 TYPE :: my_type 
   REAL :: x 
 END TYPE 
 TYPE (my_type), DIMENSION(3) :: t 
 CONTAINS 
   SUBROUTINE foo 
   INTEGER, DIMENSION(8)        :: c(3) 
   t(c)%x = t(c)%x 
   RETURN 
  END SUBROUTINE foo 
END MODULE bug