We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
Given this script:
class A def foo(a, b, c) p a, b, c end end class B < A def foo(_, _, _) super end end B.new.foo(1, 2, 3)
we should print 1,2,3 but pre-fixed #4341 we would throw a 1 for 3 arity error and now we print out 3, 3, 3.
The text was updated successfully, but these errors were encountered:
a416abe
Additional fix for #4342. I should only say I found _ if it is in fac…
3f16716
…t _.
No branches or pull requests
Given this script:
we should print 1,2,3 but pre-fixed #4341 we would throw a 1 for 3 arity error and now we print out 3, 3, 3.
The text was updated successfully, but these errors were encountered: