summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr15164.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pr15164.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/pr15164.f9017
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr15164.f90 b/gcc/testsuite/gfortran.dg/pr15164.f90
new file mode 100644
index 000000000..f8098710b
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/pr15164.f90
@@ -0,0 +1,17 @@
+! { dg-do compile }
+! I couldn't reproduce the failure with a compiler built from the
+! 2004-09-26 sources
+ module specfiles
+ contains
+ subroutine split(instring,outstrings,lenout,n,i)
+ integer(kind=4),intent(in) :: lenout,n
+ character(len=*),intent(in) :: instring
+ character(len=lenout),dimension(n),intent(out) :: outstrings
+ integer(kind=4) :: i,j,k
+ j=1; k=1
+ outstrings(j)(k:k)=instring(i:i)
+ return
+ end subroutine split
+ end module specfiles
+
+! { dg-final { cleanup-modules "specfiles" } }