aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorLouis Krupp <lkrupp@gcc.gnu.org>2015-10-07 09:21:58 +0000
committerLouis Krupp <lkrupp@gcc.gnu.org>2015-10-07 09:21:58 +0000
commitbbf3abfa7377acfb5e8d5f34239807444dea9caa (patch)
tree071898257ae15c478b24070d443382183f54746f /gcc
parent3161455c8b9093197e5757333a58ea988e9ca09a (diff)
downloadgcc-bbf3abfa7377acfb5e8d5f34239807444dea9caa.zip
gcc-bbf3abfa7377acfb5e8d5f34239807444dea9caa.tar.gz
gcc-bbf3abfa7377acfb5e8d5f34239807444dea9caa.tar.bz2
Check in forgotten test for fortran/65766
From-SVN: r228564
Diffstat (limited to 'gcc')
-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