PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr15164.f90
blobdef29318e1b4ee2580e685c84974713e15be3e49
1 ! { dg-do compile }
2 ! I couldn't reproduce the failure with a compiler built from the
3 ! 2004-09-26 sources
4 module specfiles
5 contains
6 subroutine split(instring,outstrings,lenout,n,i)
7 integer(kind=4),intent(in) :: lenout,n
8 character(len=*),intent(in) :: instring
9 character(len=lenout),dimension(n),intent(out) :: outstrings
10 integer(kind=4) :: i,j,k
11 j=1; k=1
12 outstrings(j)(k:k)=instring(i:i)
13 return
14 end subroutine split
15 end module specfiles