aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/substr_3.f
blob: 3bb71972ff171b9893cf448d440230e8efba8f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do run }
! Check that substrings behave correctly even when zero-sized
      implicit none
      character(len=10) :: s, t
      integer :: i, j

      s = "abcdefghij"
      t(:10) = s(1:)
      s(16:15) = "foo"
      s(0:-1) = "foo"
      if (s /= t) call abort
      end