Actions
Bug #9291
closedarray splatting a nil works, but hash splatting a nil does not
Bug #9291:
array splatting a nil works, but hash splatting a nil does not
Description
irb(main):001:0> [*nil]
=> []
irb(main):002:0> {**nil}
TypeError: no implicit conversion of nil into Hash
Actions