Fix "ambiguous first argument" warning

This commit is contained in:
Zachary Scott
2015-12-17 00:12:19 +09:00
parent 0720aac250
commit 3f228c1da4
+1 -1
View File
@@ -152,7 +152,7 @@ assert('Integer#<<', '15.2.8.3.12') do
assert_equal 2147483648, 1 << 31
# -3 Left Shift by 30 is bitShift overflow to SignedInt
assert_equal -3221225472, -3 << 30
assert_equal(-3221225472, -3 << 30)
end
assert('Integer#>>', '15.2.8.3.13') do