Add a testcase of #4137 fix

This commit is contained in:
Uchio KONDO
2018-10-11 17:40:18 +09:00
parent fdd5ce8fac
commit 7c52734243
+12
View File
@@ -187,6 +187,18 @@ assert('Abbreviated variable assignment as returns') do
assert_equal 1, Syntax4AbbrVarAsgnAsReturns::A.new.b
end
assert('Abbreviated variable assignment of object attribute') do
module Syntax4AbbrVarAsgnObjectAttr
class A
attr_accessor :c
def b
self.c ||= 1
end
end
end
assert_equal 1, Syntax4AbbrVarAsgnObjectAttr::A.new.b
end
assert('Splat and multiple assignment') do
*a = *[1,2,3]
b, *c = *[7,8,9]