<!-- This is a simple template for filing JRuby isuses. Please help us help you by providing the information below. Text inside XML comment tags will not be shown in your report. --> ### Environment jruby 9.1.0.0 - 9.1.2.0 <!-- Provide at least: * JRuby version (`jruby -v`) and command line (flags, JRUBY_OPTS, etc) * Operating system and platform (e.g. `uname -a`) Other relevant info you may wish to add: * Installed or activated gems * Application/framework version (e.g. Rails, Sinatra) * Environment variables --> ### Expected Behavior ``` $ jruby -we 'p({x:-1})' -e:1: warning: Ambiguous first argument; make sure. {:x=>-1} ``` <!-- Describe your expectation of how JRuby should behave. Provide an executable Ruby script or a link to an example repository. --> ### Actual Behavior jruby 9.0.5.0 ``` $ jruby -we 'p({x:-1})' {:x=>-1} ``` ruby 2.3.1 ``` $ ruby -we 'p({x:-1})' {:x=>-1} ``` <!-- Describe or show the actual behavior. Provide text or screen capture showing the behavior. -->