2 ! PR39528 repeated entries not read when using list-directed input.
3 ! Test case derived from reporters example.
6 integer :: iarr(1:7), ia
, ib
, i
10 open(10, status
="scratch")
11 write(10,*) " 2*1 3*2 /"
16 read(10,*) (iarr(i
), i
=1,7)
19 if (any(iarr(1:2).ne
.1)) call abort
20 if (any(iarr(3:5).ne
.2)) call abort
21 if (any(iarr(6:7).ne
.0)) call abort
22 if (ia
.ne
. 12 .or
. ib
.ne
. 13) call abort