From: Denis de Bernardy Date: 2012-02-17T04:17:27+09:00 Subject: [ruby-core:42693] [ruby-trunk - Bug #6039] lambda vs proc; #to_ary w/ splat bug Issue #6039 has been updated by Denis de Bernardy. Possibly related: http://bugs.ruby-lang.org/issues/5694 ---------------------------------------- Bug #6039: lambda vs proc; #to_ary w/ splat bug https://bugs.ruby-lang.org/issues/6039 Author: Denis de Bernardy Status: Open Priority: Normal Assignee: Category: Target version: ruby -v: 1.9.3 to_ary apparently gets called in edge cases when a proc has a splat argument: good = Class.new do def to_ary [:bad] end end.new foo = lambda { |*bar| bar.first } foo.call(good) foo = lambda { |bar, *baz| bar } foo.call(good) foo = proc { |*bar| bar.first } foo.call(good) foo = proc { |bar, *baz| bar } foo.call(good) >> RUBY_VERSION => "1.9.3" >> good = Class.new do ?> def to_ary >> [:bad] >> end >> end.new => #<#:0x00000100a399d0> >> ?> foo = lambda { |*bar| bar.first } => # >> foo.call(good) => #<#:0x00000100a399d0> >> ?> foo = lambda { |bar, *baz| bar } => # >> foo.call(good) => #<#:0x00000100a399d0> >> ?> foo = proc { |*bar| bar.first } => # >> foo.call(good) => #<#:0x00000100a399d0> >> ?> foo = proc { |bar, *baz| bar } => # >> foo.call(good) => :bad -- http://bugs.ruby-lang.org/