1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
program contained implicit none integer i i = 0; call testproc (40) if (i .ne. 42) call abort contains subroutine testproc (p) implicit none integer p if (p .ne. 40) call abort i = p + 2 end subroutine end program