summaryrefslogtreecommitdiff
path: root/test/ruby/test_syntax.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_syntax.rb')
-rw-r--r--test/ruby/test_syntax.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 6fdca37924..8112b14690 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -976,6 +976,11 @@ eom
assert_valid_syntax("a\n.:foo")
end
+ def test_safe_call_in_massign_lhs
+ assert_syntax_error("*a&.x=0", /LHS/)
+ assert_syntax_error("a&.x,=0", /LHS/)
+ end
+
def test_no_warning_logop_literal
assert_warning("") do
eval("true||raise;nil")