Commit 2ca825a2 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #3051 from zzak/ambiguous-first-argument

Fix "ambiguous first argument" warning
parents 0720aac2 3f228c1d
......@@ -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