Actions
Bug #19365
closedRactors can access non-shareable values through enumerators
Bug #19365:
Ractors can access non-shareable values through enumerators
Description
I don't think enumerators should be able to be passed to Ractor.new
obj = Object.new # unshareable value
p obj
Ractor.new([obj].each) {|f| p f.first }.take
Actions