Skip to content
New issue

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

Incorrect handling of -source:3.5-migration in implicits behaviour deprecation #20420

Closed
WojciechMazur opened this issue May 16, 2024 · 1 comment · Fixed by #20436
Closed
Assignees
Labels
area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug

Comments

@WojciechMazur
Copy link
Contributor

Compiler version

3.5.0-RC1

Minimized code

//> using options -source:3.5-migration

final class StrictEqual[V]
final class Less[V]
type LessEqual[V] = Less[V] | StrictEqual[V]

object TapirCodecIron:
  trait ValidatorForPredicate[Value, Predicate]
  trait PrimitiveValidatorForPredicate[Value, Predicate]
      extends ValidatorForPredicate[Value, Predicate]

  given validatorForLessEqual[N: Numeric, NM <: N](using
      ValueOf[NM]
  ): PrimitiveValidatorForPredicate[N, LessEqual[NM]] = ???
  given validatorForDescribedOr[N, P](using
      IsDescription[P]
  ): ValidatorForPredicate[N, P] = ???

  trait IsDescription[A]
  object IsDescription:
    given derived[A]: IsDescription[A] = ???

@main def Test = {
  import TapirCodecIron.{*, given}
  type IntConstraint = LessEqual[3]
  summon[ValidatorForPredicate[Int, IntConstraint]]
}

Output

[error] ./tapir.repro.scala:24:52
[error] Ambiguous given instances: both given instance validatorForDescribedOr in object TapirCodecIron and given instance validatorForLessEqual in object TapirCodecIron match type TapirCodecIron.ValidatorForPredicate[Int, IntConstraint] of parameter x of method summon in object Predef
[error]   summon[ValidatorForPredicate[Int, IntConstraint]]
[error]                                                    ^
Error compiling project (Scala 3.5.0-RC1, JVM (17))

Expectation

Should yield warning as it does under -source:3.5

Compiling project (Scala 3.5.0-RC1, JVM (17))
[warn] ./tapir.repro.scala:24:52
[warn] Given search preference for TapirCodecIron.ValidatorForPredicate[Int, IntConstraint] between alternatives (TapirCodecIron.validatorForDescribedOr :
[warn]   [N, P]
[warn]     (using x$1: TapirCodecIron.IsDescription[P]):
[warn]       TapirCodecIron.ValidatorForPredicate[N, P]
[warn] ) and (TapirCodecIron.validatorForLessEqual :
[warn]   [N, NM <: N]
[warn]     (implicit evidence$1: Numeric[N], x$1: ValueOf[NM]):
[warn]       TapirCodecIron.PrimitiveValidatorForPredicate[N, LessEqual[NM]]
[warn] ) will change
[warn] Current choice           : the second alternative
[warn] New choice from Scala 3.6: none - it's ambiguous
[warn]   summon[ValidatorForPredicate[Int, IntConstraint]]
[warn]                                                    ^
Compiled project (Scala 3.5.0-RC1, JVM (17))
@WojciechMazur WojciechMazur added itype:bug area:reporting Error reporting including formatting, implicit suggestions, etc stat:needs triage Every issue needs to have an "area" and "itype" label labels May 16, 2024
@WojciechMazur
Copy link
Contributor Author

What's interesting is the fact that without any -source flag there is no warning/error at all.

@Gedochao Gedochao removed the stat:needs triage Every issue needs to have an "area" and "itype" label label May 17, 2024
@odersky odersky self-assigned this May 19, 2024
odersky added a commit to dotty-staging/dotty that referenced this issue May 19, 2024
Treat 3.5-migration the same as 3.5 for a warning about implicit priority change

Fixes scala#20420
odersky added a commit to dotty-staging/dotty that referenced this issue May 19, 2024
Treat 3.5-migration the same as 3.5 for a warning about implicit priority change

Fixes scala#20420
odersky added a commit that referenced this issue May 22, 2024
Treat 3.5-migration the same as 3.5 for a warning about implicit
priority change

Fixes #20420
WojciechMazur added a commit to WojciechMazur/dotty that referenced this issue Jun 17, 2024
…rity change

Fixes scala#20420
WojciechMazur added a commit that referenced this issue Jun 17, 2024
…rity change

Fixes #20420
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants