aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_syntax.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-11 04:46:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-11 04:46:56 +0000
commit8771d1a0fcf5c100885630a1e9a6bef1a44f32ff (patch)
tree57618fc69b2a15dc70e74307a1780a1d7cdcbc1f /test/ruby/test_syntax.rb
parent1571682719525d67ae355e4a0394c002f4aa30f1 (diff)
downloadruby-8771d1a0fcf5c100885630a1e9a6bef1a44f32ff.tar.gz
vm.c: precedence of duplicated keys
* vm.c (kwmerge_i): override existing keys by new keys. [ruby-core:65368] [Bug #10315] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47878 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_syntax.rb')
-rw-r--r--test/ruby/test_syntax.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 013d9dcac3..5a7d2f8a62 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -109,12 +109,12 @@ class TestSyntax < Test::Unit::TestCase
def o.kw(k1: 1, k2: 2) [k1, k2] end
h = {k1: 11, k2: 12}
assert_equal([11, 12], o.kw(**h))
- assert_equal([11, 22], o.kw(k2: 22, **h))
- assert_equal([11, 12], o.kw(**h, **{k2: 22}))
- assert_equal([11, 22], o.kw(**{k2: 22}, **h))
+ assert_equal([11, 12], o.kw(k2: 22, **h))
+ assert_equal([11, 22], o.kw(**h, **{k2: 22}))
+ assert_equal([11, 12], o.kw(**{k2: 22}, **h))
bug10315 = '[ruby-core:65368] [Bug #10315]'
- assert_equal([22, 2], o.kw(**{k1: 22}, **{k1: 23}), bug10315)
+ assert_equal([23, 2], o.kw(**{k1: 22}, **{k1: 23}), bug10315)
h = {k3: 31}
assert_raise(ArgumentError) {o.kw(**h)}