2 ! { dg-options "-std=legacy" }
4 ! Check that rewind doesn't delete a file.
5 ! Writing to the file truncates it at the end of the current record. Out
6 ! IO library was defering the actual truncation until the file was rewound.
7 ! A second rewind would then (incorrectly) think the file had just been
8 ! written to, and truncate the file to zero length.
11 open(unit
=11, status
="SCRATCH")
12 write(11, '(a11)') "Hello World"
18 if (s
.ne
. "Hello World") STOP 1