blob: ed2dbfc02499fc89ecd15dd7fb155298fabeb158 [file] [log] [blame]
program test4
implicit none
integer :: n
n = 1
! this is a comment
goto (10, 20, 30) n*2 !<<<<< 8, 5, 8, 24, fail-initial
! another comment
print *, "It wasn't handled"
stop
10 print *, "It was one"
stop
20 print *, "It was two"
stop
30 print *, "It was three"
stop
end program test4