```ruby def foo(*) end foo :bar {} foo 'bar' {} foo 1 {} ``` The syntax above works in mruby but not in CRuby. However `foo nil {}` doesn't work in mruby either. The commit that made it possible is https://github.com/mruby/mruby/commit/e98823f1896d875b11d0e165d0e8cf9e478a8709 Intentional?
The syntax above works in mruby but not in CRuby. However
foo nil {}doesn't work in mruby either.The commit that made it possible is e98823f
Intentional?