Fix MonitorMixin and Mutex_m when the super's initialize method has kwargs by pocke · Pull Request #3310 · ruby/ruby

Problem MonitorMixin and Mutex_m have the same kwargs problem. When the super class's initialize method has kwargs, it raises an error on Ruby 2.8. For example: class P def initialize(x:) p x...