Commit bb141e55 authored by cremno's avatar cremno

fix ambiguous first argument warning

/home/travis/build/mruby/mruby/test/t/float.rb:201:17:
ambiguous first argument; put parentheses or even spaces
parent 8bad1954
...@@ -198,5 +198,5 @@ assert('Float#>>') do ...@@ -198,5 +198,5 @@ assert('Float#>>') do
assert_equal 0, 23.0 >> 128 assert_equal 0, 23.0 >> 128
# Don't raise on large Right Shift # Don't raise on large Right Shift
assert_equal -1, -23.0 >> 128 assert_equal(-1, -23.0 >> 128)
end end
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