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
scala> ((x => x): Function1[Int, Int] { def apply(arg: Int): Int }).apply(arg = 1) 1 |((x => x): Function1[Int, Int] { def apply(arg: Int): Int }).apply(arg = 1) | ^^^^^^^ | method apply: (v1: Int): Int does not have a parameter arg scala> ((x => x): Function1[Int, Int] { def apply(arg: Int): Int }).apply(v1 = 1) val res0: Int = 1
this is different in scala 2
The text was updated successfully, but these errors were encountered:
7eb4042
Merge pull request #8529 from dotty-staging/fix-#8516
4df9b6f
Fix #8516: Keep correct parameter names when selecting in refined types
No branches or pull requests
this is different in scala 2
The text was updated successfully, but these errors were encountered: