modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / arrayio_7.f90
blobf1d200c013c8b91a4ad1aa3dec7ec20d0601ec9e
1 ! { dg-do run }
2 ! { dg-options "-std=legacy" }
4 ! PR24224 Test formatted input/output to/from character arrays with strides
5 ! other than 1. Test that reading stops at the end of the current record.
6 ! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.
7 program arrayio_7
8 character*4, dimension(8) :: abuf = (/"0123","4567","89AB","CDEF", &
9 "0123","4567","89AB","CDEF"/)
10 character*4, dimension(2,4) :: buf
11 character*8 :: a
12 equivalence (buf,abuf)
13 read(buf(2, 1:3:2), '(a8)') a
14 if (a.ne."4567") STOP 1
15 end program arrayio_7