I encounter a strange behaviour in Fortran 77 code (gfortran compiler), the following line works perfectly (jumping to label 202 for iprob=202):
if( iprob .eq. 202 ) goto 202
!...some commands...
202 continue
However, its counterpart:
GO TO ( 202 ), iprob
!...some commands...
202 continue
doesn't. The program just runs through for iprob=202.
Maybe anybody has an idea on that issue?