General

Profile

uta2ne (Yoshihisa Masuda)

  • Login: uta2ne
  • Email: uta2ne@gmail.com
  • Registered on: 04/29/2015
  • Last sign in: 04/29/2015

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 0 1 1

Activity

04/29/2015

12:35 PM Ruby Bug #11108: Unexpected LocalJumpError from "break" in nested begin block
The script below raises an unexpected "`LocalJumpError`".
~~~ruby
%w(a b c).each { |c|
p c
begin
raise
rescue =e
begin
raise
rescue =e
break
end
end
}
~~~
uta2ne (Yoshihisa Masuda)
12:00 PM Ruby Bug #11108 (Closed): Unexpected LocalJumpError from "break" in nested begin block
The script below raises an unexpected "`LocalJumpError`".
```ruby
%w(a b c).each { |c|
p c
begin
raise
rescue => e
begin
raise
rescue => e
break
end
end
}
```
uta2ne (Yoshihisa Masuda)

Also available in: Atom