I know that the assigned GO TO statement has been deleted in Fortran 95 but we try to port your Fortran 77 programs to Fortran 95 now.
You write that the feature is not deleted from ftn95, so I can compile and link my program but I get an access violation at this point when I run it!
My simple program:
PROGRAM LTEST
C
INTEGER*2 LABEL1
C
ASSIGN 50 TO LABEL1
GOTO LABEL1
C
50 CONTINUE
C
END
Is there a hack how I can use the goto assigned label without an access violation??