Closed agrobbin closed 1 year ago
I tried to mimic the issues created for the new features introduced in Ruby 3.1, hopefully this is sufficient, but if not please let me know!
https://rubyreferences.github.io/rubychanges/3.2.html#anonymous-arguments-passing-improvements
def foo(*, **) bar(*, **) end
This should be parsed as valid Ruby in 3.2, but at the moment is raising a parsing error.
this is fixed and will go out in the next release. Thanks for the report!
Thanks for the quick fix, @zenspider!
I tried to mimic the issues created for the new features introduced in Ruby 3.1, hopefully this is sufficient, but if not please let me know!
https://rubyreferences.github.io/rubychanges/3.2.html#anonymous-arguments-passing-improvements
This should be parsed as valid Ruby in 3.2, but at the moment is raising a parsing error.