• KOBAYASHI Shuji's avatar
    `_0` is not numbered parameter · 74f564b0
    KOBAYASHI Shuji authored
    #### Before this patch:
    
      ```console
      $ bin/mruby rb -e '_0=:l; p ->{_0}.()'
      -e:1:13: _0 is not available
      -e:1:13: syntax error, unexpected $end, expecting '}'
      ```
    
    #### After this patch (same as Ruby):
    
      ```console
      $ bin/mruby rb -e '_0=:l; p ->{_0}.()'
      :l
      ```
    74f564b0
syntax.rb 14.2 KB