I am opening a file which has to be deleted at the end. The following command complains about using dispose
.
f = "espy.tmp"; h = "formatted"; r = "read"
Open (newunit=u, file=f, form=h, action=r, &
status="old", dispose="delete")
lib/core.f:177:21:
status="old", dispose="delete")
1
Error: Syntax error in OPEN statement at (1)
gfortran
which doesn't yet know thenewunit
option. For example: I can't recreate this because mine doesn't know it yet.newunit
is not what is causing the problem.