FOR1274S
The statement statement, which was not of the asynchronous form, for unit unit-number, which was connected to file-name, failed. The previous asynchronous I/O statement was not followed by a REWIND statement. VS FORTRAN Version 2 Error Number: AFB286I

System action

The condition is signaled. If the condition is unhandled, the application is terminated.

Qualifying Data: The basic set of four qualifying data for I/O conditions as shown in Table 1. Within this basic set, parm_count has a value of 4.

Name Action Taken after Resumption
RN The I/O operation is ignored, and execution continues.

Programmer response

If you want to switch back and forth between asynchronous I/O statements and the sequential I/O statements defined by the Fortran language standard, then execute a REWIND statement each time you switch between the two. (Alternatively, you could execute a CLOSE statement followed by an OPEN statement.) While positioned within a file, you cannot switch between the two forms of I/O statements. If executing the REWIND statement doesn't provide the file positioning that your program requires, then change the program so that either asynchronous I/O statements or standard sequential I/O statements are used exclusively.

Symbolic Feedback Code

FOR1274