2 ! PR 24244 : Test formatted input/output to/from character arrays.
3 ! This test checks array I/O with strides other than 1.
4 ! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.
8 character(12) :: r(2,3,4) = '0123456789AB'
10 write(r(::2,:,::1),'(i5)', iostat
=ierr
) 1,2,3,4,5
11 if (ierr
.ne
.0) call abort()
13 write(r(:,:,::2),'(i5)', iostat
=ierr
) 1,2,3,4,5
14 if (ierr
.ne
.0) call abort()
16 write(r(::1,::2,::1),'(i5)', iostat
=ierr
) 1,2,3,4,5
17 if (ierr
.ne
.0) call abort()
19 write(r(::1,::1,::1),'(i5)', iostat
=ierr
) 1,2,3,4,5
20 if (ierr
.ne
.0) call abort()