summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-02 08:33:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-02 08:33:30 +0000
commit896e7f2d8dd7fa190c4514043b3aa5fcfa20c65f (patch)
treea9fc4fb6d026f8139e48adeedb56798d8839e119 /test
parentf5740d18bfc2c16c8996dcba9d15303f9404b406 (diff)
compile.c: fix stack consitency error
* compile.c (iseq_compile_each0): fix stack consitency error on attr-assign with safe navigation operator when the receiver is nil, should pop it too. [ruby-core:83078] [Bug #13964] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_call.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_call.rb b/test/ruby/test_call.rb
index 4496d78210..18203ce731 100644
--- a/test/ruby/test_call.rb
+++ b/test/ruby/test_call.rb
@@ -52,6 +52,7 @@ class TestCall < Test::Unit::TestCase
assert_nil(o&.x)
assert_nothing_raised(NoMethodError) {o&.x = 6}
assert_nothing_raised(NoMethodError) {o&.x *= 7}
+ assert_nothing_raised(NoMethodError) {o&.x *= 8; [].each {}}
end
def test_safe_call_evaluate_arguments_only_method_call_is_made