Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
F2730
◄Up► ◄Contents► ◄Index► ◄Back►
────────────────────────────────────────────────────────────────────────────
FORTRAN compilation error F2730
<name> : cannot modify active DO variable
A DO variable cannot be modified within its range. For example,
the following program fragments cause this error:
DO 100 I = 1,10
OPEN (33, IOSTAT = I)
100 CONTINUE
READ (*,*) (I, I = 1,10)
-♦-