We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The second call to splat args results in error. Exception is caught on ArrayBuilderNode line 218.
Code:
@a = [] @b = 0 def splat_args( *a ) @a.insert(@b, *a) puts @a.to_s end splat_args 60, 111 splat_args 60, 111
Error
rang.rb:4:in `splat_args': internal implementation error - ArrayStoreException null java.lang.System.arraycopy(Native Method) (RubyTruffleError) from rang.rb:10:in `<main>'
Expected:
[60, 111] [60, 111, 60, 111]
The text was updated successfully, but these errors were encountered:
9e423f9
No branches or pull requests
The second call to splat args results in error. Exception is caught on ArrayBuilderNode line 218.
Code:
Error
Expected:
The text was updated successfully, but these errors were encountered: