1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 13:21:59 +03:00
semantic/test/fixtures/ruby/analysis/break.rb
2019-12-17 16:15:25 -08:00

10 lines
71 B
Ruby

ii = 0
while ii < 5
ii = ii + 1
if ii == 3
break
end
end
ii