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
Regression found in Open CB #271 for scalikejdbc/scalikejdbc
Works in 3.2.1-RC1 Fails in 3.2.1-RC2 Fails in 3.2.2-RC1-bin-20220925-562ab85-NIGHTLY
Bisect points to 57f53d0
trait SQLSyntaxSupport[A] trait ResultNameSQLSyntaxProvider[S <: SQLSyntaxSupport[A], A] trait QuerySQLSyntaxProvider[S <: SQLSyntaxSupport[A], A]{ def resultName: ResultNameSQLSyntaxProvider[S, A] = ??? } def include(syntaxProviders: QuerySQLSyntaxProvider[_, _]*) = { syntax(syntaxProviders.map(_.resultName): _*) } def syntax(resultNames: ResultNameSQLSyntaxProvider[_, _]*) = ???
[error] ./test.scala:9:30: Found: ResultNameSQLSyntaxProvider[_$1.S, _$1.A] [error] Required: ResultNameSQLSyntaxProvider[? <: SQLSyntaxSupport[A], ?] [error] syntax(syntaxProviders.map(_.resultName): _*) [error]
Should compile
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Regression found in Open CB #271 for scalikejdbc/scalikejdbc
Compiler version
Works in 3.2.1-RC1
Fails in 3.2.1-RC2
Fails in 3.2.2-RC1-bin-20220925-562ab85-NIGHTLY
Bisect points to 57f53d0
Minimized code
Output
Expectation
Should compile
The text was updated successfully, but these errors were encountered: