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

Inference failure with -Ypartial-unification #13082

Open
lrytz opened this issue Jan 29, 2025 · 1 comment
Open

Inference failure with -Ypartial-unification #13082

lrytz opened this issue Jan 29, 2025 · 1 comment
Labels
Milestone

Comments

@lrytz
Copy link
Member

lrytz commented Jan 29, 2025

Not sure if it's a bug, or if there are fundamental reasons why inference cannot succeed.

object Q {
  def f[T, F[X <: T]](s: F[T])(implicit c: Co[T, F]) = ???
}

trait Itr[+A]

trait Co[U, -F[_ <: U]]
object Co {
  implicit def i[E]: Co[E, Itr] = ???
}

class K
object K extends VS[K, VH[K]]

trait VS[V, H <: VH[V]] extends Itr[V]
trait VH[+A]

class Test {
  // these all work with 2.12, but fail with 2.13
  // they also fail with Scala 3, and with 2.12 with -Ypartial-unification
  //    inferred kinds of the type arguments (VH[K],[H <: VH[V]]VS[K,H]) do not conform to the expected kinds of the type parameters (type T,type F).
  //    [H <: VH[V]]VS[K,H]'s type parameters do not match type F's expected parameters:
  //    type H's bounds <: VH[V] are stricter than type X's declared bounds <: T
  Q.f(K)
  // Q.f(K)(Co.i)
  // Q.f(K)(Co.i[K])
  // Q.f(K)(Co.i[K])

  // works on 2.12, 2.13, Scala 3
  // Q.f[K, Itr](K)
}
@lrytz lrytz modified the milestone: Backlog Jan 29, 2025
@lrytz
Copy link
Member Author

lrytz commented Jan 31, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants