mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
12d51807a3
I expect this will fix the two problems that "#5640" didn't address. - It is expected to raise an exception `TypeError`, but it didn't before. ```console % bin/mruby -e 'p [**1]' [1] ``` - The variable `h` is expected to keep an empty hash, but it didn't before. ```console % bin/mruby -e 'h = {}; p(**h, a: 1, b: 2); p h' {:a=>1, :b=>2} {:a=>1, :b=>2} ```