blob: dfc1ac5426e997f07c3a0ceb5e9e317da2848c4f [file] [log] [blame]
program test3 !<<<<< 1,1,pass
INTEGER :: chicken = 0
INTEGER :: rice
! This is a comment before the refactored line
if(chicken< 0) then ! This is a comment on the refactored line
goto 10
else if(chicken == 0) then
goto 20
else
goto 30
end if
! This is a comment after the refactored line
10 rice = 1
goto 40
20 rice = 2
goto 40
30 rice = &
& 3
40 print *, rice
end program test3