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
Based on the Open CB failure for kiberstender/fjwt - https://scala3.westeurope.cloudapp.azure.com/job/buildCommunityProject/26256/
Bisect points to 063579a
trait JWTEncoder[F[*]]: def encode[P](arg: String)(opt: Option[String] = None): F[String] def encode[P](arg: String): F[String] = encode(arg)()
Compiling project (Scala 3.3.0-RC1-bin-20221205-5cf8a58-NIGHTLY, JVM) [error] /home/wmazur/projects/virtuslab/bisect/test.scala:3:43: None of the overloaded alternatives of method encode in trait JWTEncoder with types [error] [P](arg: String): F[String] [error] [P](arg: String)(opt: Option[String]): F[String] [error] match arguments ((arg : String))() [error] [error] where: F is a type in trait JWTEncoder with bounds <: [*] =>> Any [error] def encode[P](arg: String): F[String] = encode(arg)() [error] ^^^^^^ Error compiling project (Scala 3.3.0-RC1-bin-20221205-5cf8a58-NIGHTLY, JVM)
Should compile
The text was updated successfully, but these errors were encountered:
Fix curried overloading resolution for polymorphic methods
43a77e9
Fixes scala#16484
Fix curried overloading resolution for polymorphic methods (#16485)
4a3747a
Fixes #16484
55dbf64
odersky
Successfully merging a pull request may close this issue.
Based on the Open CB failure for kiberstender/fjwt - https://scala3.westeurope.cloudapp.azure.com/job/buildCommunityProject/26256/
Compiler version
Bisect points to 063579a
Minimized code
Output
Expectation
Should compile
The text was updated successfully, but these errors were encountered: