1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 22:31:36 +03:00
semantic/test/fixtures/ruby/analysis/break.rb

10 lines
67 B
Ruby
Raw Normal View History

2018-04-23 20:14:52 +03:00
ii = 0
while ii < 5
ii += 1
if ii == 3
break
end
end
ii