if foo
  return # Never
else
  1      # Int
end
if foo
  puts "ok" # Void
else
  x += 2    # Int
  # ここにVoidを挿入
end