Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29393 Discussions

Error Code 218 (Recursive IO was detected)

wallac99
Beginner
650 Views
Are there any details about this error code?
I looked up the user guide but the I/O errors stop at 217.

I've been trying to compiler some visual fortran code, that was originally developed on windows but this error is halting my progress.

Any help is appreciated.
0 Kudos
1 Reply
serjx
Beginner
650 Views
The error means that your application uses a code, which looks like this:

...
write(...) ..., func(), ...
...

integer function func()
...
write(...) ...
...
end function func

WRITE statement attempts to write result of a function, which has the similar WRITE statement.

-serjX
0 Kudos
Reply