1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 01:47:01 +03:00
semantic/test/fixtures/ruby/corpus/rescue.A.rb
2018-04-18 13:33:17 -07:00

20 lines
187 B
Ruby

begin
foo
rescue Error
rescue StandardError, TimeoutError => x
x
else
z
ensure
y
end
def foo
rescue Error
rescue StandardError, TimeoutError => x
else
ensure
end
bar rescue nil