[Open] Array#reject aborts with callcc

Issue #9727 has been reported by Nobuyoshi N…


Bug #9727: Array#reject aborts with callcc

  • Author: Nobuyoshi N.
  • Status: Open
  • Priority: Normal
  • Assignee:
  • Category: core
  • Target version: current: 2.2.0
  • ruby -v: r45560
  • Backport: 2.0.0: REQUIRED, 2.1: REQUIRED

2.0.0以降で、以下のコードが異常終了します。

require 'continuation'
cont = nil
a = [*1..10].reject do |i|
  callcc{|c| cont = c} if !cont and i == 10
  false
end
a.unshift(:x)
cont.call if a.size < 1000