Commit 3f228c1d authored by Zachary Scott's avatar Zachary Scott

Fix "ambiguous first argument" warning

parent 0720aac2
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment