if true; 1; end

if true
1 else 2 end

if true then true elsif false then false elsif nil then nil else self end

1 if true

break if true

next if true

return if true

if exit_loop then break 42 end

if foo
then bar
end

a if b if c

if true
  a b:
else
end

if type in 1
elsif type in B
end

if 1
  lambda do |_|
  end
elsif 2
  lambda do |_|
  end
else
  lambda do |_|
  end
end
