diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-12-17 01:23:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-12-17 01:23:34 +0900 |
| commit | 2ca825a21243fce82f10cc05383f66ae1f294db6 (patch) | |
| tree | 4305a52179bf4fd8e735e4ff4dd521bc404a2275 | |
| parent | 0720aac25079491d187aa939bac2563c7df2c463 (diff) | |
| parent | 3f228c1da4e23e78415cd4ef0b0bd770b3c6e63e (diff) | |
| download | mruby-2ca825a21243fce82f10cc05383f66ae1f294db6.tar.gz mruby-2ca825a21243fce82f10cc05383f66ae1f294db6.zip | |
Merge pull request #3051 from zzak/ambiguous-first-argument
Fix "ambiguous first argument" warning
| -rw-r--r-- | test/t/integer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/integer.rb b/test/t/integer.rb index 5379744e5..d4ef8b519 100644 --- a/test/t/integer.rb +++ b/test/t/integer.rb @@ -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 |
