2 ! PR 34594 - this used to give runtime errors due to an
6 integer :: iou
, i
, ir
, TEMP_CHANGES
10 open(11,file
="foo.dat")
11 ! Try a direct access read on a formatted sequential rile
12 READ (11, REC
= I
, ERR
= 99) TEMP_CHANGES
15 ! Variant 2: ir is ok, but does not jump to 99
16 READ (11, REC
= I
, IOSTAT
= IR
, ERR
= 98) TEMP_CHANGES
23 close(11,status
="delete")