summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/class_dummy_9.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/class_dummy_9.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/class_dummy_9.f9020
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/class_dummy_9.f90 b/gcc/testsuite/gfortran.dg/class_dummy_9.f90
new file mode 100644
index 00000000000..0fd98c05be2
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/class_dummy_9.f90
@@ -0,0 +1,20 @@
+! { dg-do compile }
+!
+! PR fortran/105379
+! Type comparison of class containers used to trigger an ICE when one of the
+! class containers had a non-constant array spec.
+!
+! Contributed by Gerhard Steinmetz <gscfq@t-online.de>.
+
+program p
+ type t
+ end type
+ integer :: m = 3
+contains
+ subroutine s1(x)
+ class(t) :: x(3)
+ end
+ subroutine s3(x)
+ class(t) :: x(m)
+ end
+end