2 ! pr 17090 Runtime I/O error
3 ! bdavis9659@comcast.net
5 ! list directed read with spaces between the last data item and the
6 ! eoln cause missed data items.
7 ! this is a libgfortran test case
12 open(unit
=9,status
='SCRATCH')
13 write(9,*)1.0,2.0,3.0,4.0,' '
14 write(9,*)5.0,6.0,7.0,8.0,' '
15 write(9,*)9.0,10.0,11.0,12.0,13.0,14.0,' '
21 if (sum
.ne
.105) call abort