blob: 8fef7503a62cde8094f12c92a991930f2f2c65dc [file] [log] [blame]
program singlelineif !<<<<<START
implicit none
integer :: i,j
i = 1
j = 2
if(i == 1) print *, ""
if(j == 2)then
print *,"asdf"
end if
end program singlelineif !<<<<<END