[ruby-core:96304] [Ruby master Bug#9291] array splatting a nil works, but hash splatting a nil does not
From:
mame@...
Date:
2019-12-18 10:26:39 UTC
List:
ruby-core #96304
Issue #9291 has been updated by mame (Yusuke Endoh).
Backport deleted (1.9.3: UNKNOWN, 2.0.0: UNKNOWN, 2.1: UNKNOWN)
Status changed from Open to Rejected
Closing as it is by design. If you want the change, please open a feature request ticket with a use case.
----------------------------------------
Bug #9291: array splatting a nil works, but hash splatting a nil does not
https://bugs.ruby-lang.org/issues/9291#change-83210
* Author: rits (First Last)
* Status: Rejected
* Priority: Normal
* Assignee: matz (Yukihiro Matsumoto)
* Target version:
* ruby -v: ruby 2.0.0p353 (2013-11-22 revision 43784) [i686-linux]
* Backport:
----------------------------------------
irb(main):001:0> [*nil]
=> []
irb(main):002:0> {**nil}
TypeError: no implicit conversion of nil into Hash
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>