Project

General

Profile

Bug #18289 ยป to_a_kw_arg_delegation.rb

Ethan (Ethan -), 11/05/2021 11:04 AM

 
class Foo
include Enumerable

def each(opt: )
yield 'foo'
end
end

pp Foo.new.to_a(opt: 4)
    (1-1/1)