[#48926] doc/extension.ja.rdoc 査読依頼 — Yugui <yugui@...>

doc/extension.ja.rdoc

12 messages 2015/04/12
[#48930] Re: doc/extension.ja.rdoc 査読依頼 — SASADA Koichi <ko1@...> 2015/04/13

 ドキュメントまとめて頂いて、ありがとうございます。多分、それなりに知っ

[ruby-dev:48952] [Ruby trunk - Bug #11108] [Closed] Unexpected LocalJumpError from "break" in nested begin block

From: nobu@...
Date: 2015-04-29 12:57:58 UTC
List: ruby-dev #48952
Issue #11108 has been updated by Nobuyoshi Nakada.

Description updated
Status changed from Open to Closed

----------------------------------------
Bug #11108: Unexpected LocalJumpError from "break" in nested begin block
https://bugs.ruby-lang.org/issues/11108#change-52274

* Author: Yoshihisa Masuda
* Status: Closed
* Priority: Normal
* Assignee: 
* ruby -v: ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
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
}
```




-- 
https://bugs.ruby-lang.org/

In This Thread

Prev Next