aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90')
-rw-r--r--gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f9017
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90 b/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90
new file mode 100644
index 000000000..29515f556
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/compile/defined_type_2.f90
@@ -0,0 +1,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
+