1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00
semantic/test/fixtures/ruby/analysis/next.rb
2018-04-23 13:14:52 -04:00

13 lines
109 B
Ruby

ii = 0
jj = 0
while ii < 5
ii += 1
jj += 1
if (ii == 3) && (jj == 3)
ii = 0
next
end
end
jj