>meth=::Kernel.method(:BigDecimal)=>#<Method: Kernel.BigDecimal(*)><internal:ractor>:816:in`make_shareable': can not make shareable object for #<Method: Kernel.BigDecimal(*)> (Ractor::Error)
I understand that procs have the issue of accessing outer-scope variables, but does the same apply to methods converted to procs?
I don't see a .to_proc call in the description.
Either way, both Method and Proc objects can't be shared, they have mutable state.
For Method/UnboundMethod they could potentially be made immutable and therefore shareable (sounds good to me), but it would be a potentially-breaking change.
Now Method object is not shareable, but if the receiver is shareable, we can make it shareable.
Matz asked me to make it shareable, so we can consider the spec.