aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f9023
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90 b/gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90
new file mode 100644
index 0000000..3a69a58
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/substr_alloc_string_comp_1.f90
@@ -0,0 +1,23 @@
+! { dg-do run }
+! PR fortran/65766
+! Substrings of allocatable string components of derived types
+program substr_derived_alloc_comp
+ implicit none
+
+ type t1
+ character(len=:), allocatable :: s
+ end type t1
+
+ character(len=*), parameter :: c = &
+ "0123456789abcdefghijklmnopqrstuvwxyz"
+
+ type(t1) x1
+
+ integer i
+
+ x1%s = c
+
+ do i = 1, 36
+ if (x1%s(i:) .ne. c(i:)) call abort
+ end do
+end program