1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/fixtures/ruby/rescue.A.rb

20 lines
187 B
Ruby
Raw Normal View History

2017-02-23 01:36:22 +03:00
begin
foo
2017-07-07 20:04:49 +03:00
rescue Error
rescue StandardError, TimeoutError => x
x
else
z
ensure
y
end
def foo
rescue Error
rescue StandardError, TimeoutError => x
else
ensure
2017-02-23 01:41:30 +03:00
end
2017-07-07 23:47:50 +03:00
bar rescue nil