We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 following code fails at runt-time:
object Test extends App { val f = (x1: Int, x2: Int, x3: Int, x4: Int, x5: Int) => x1 + x2 + x3 + x4 + x5 println(f.curried(1)(2)(3)(4)(5)) }
curried in Function5 up to Function22 are not implemented.
curried
The text was updated successfully, but these errors were encountered:
That's already the case for Scala 2, right?
Sorry, something went wrong.
@odersky This is a bug encountered in running ScalaTest test suite -- Scala2 works perfectly without runtime errors.
Fix scala#6109: implement FunctionX.curried
6aec3e3
Fix scala#6109: inherit FunctionX.curried
62ad5fb
Merge pull request #6111 from dotty-staging/fix-6109
4e1d3d4
Fix #6109: implement FunctionX.curried
liufengyun
No branches or pull requests
The following code fails at runt-time:
curried
in Function5 up to Function22 are not implemented.The text was updated successfully, but these errors were encountered: