blob: ebcec067091ebb85c42abe7fddf5d7faea652987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
##
# LocalJumpError ISO Test
assert('LocalJumoError', '15.2.25') do
begin
# this will cause an exception due to the wrong location
retry
rescue => e1
end
LocalJumpError.class == Class and e1.class == LocalJumpError
end
# TODO 15.2.25.2.1 LocalJumpError#exit_value
# TODO 15.2.25.2.2 LocalJumpError#reason
|