Actions
Bug #13699
closedMultiple maps over lazy enumerator yielding multiple values in 2.4.x causes crash
Bug #13699:
Multiple maps over lazy enumerator yielding multiple values in 2.4.x causes crash
Description
Enumerator.new{|e| e.yield(5, 6)}.
lazy.
map{|x,y| 5}.
map{|z| 5}.
to_a
Tested and working in 2.1-2.3. Note that this is the absolute minimal input required to trigger the bug.
Actions