blob: c9a92b2b8ae73a3db4e2fa24abe6c90fcc21470b [file] [log] [blame]
! Test 12: Valid ASSIGN and comment GOTO statement
! Test passes and only replaces the assign because the goto is commented out
program valid_assign_comment_goto !<<<<< 1, 1, 11, 12, true, pass
assign 100 to label
!goto 1000
100 stop
1000 print *, "Should not get here"
goto 100
end program