Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29285 Discussions

Error Code 218 (Recursive IO was detected)

wallac99
Beginner
477 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
477 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