You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if it's a bug, or if there are fundamental reasons why inference cannot succeed.
objectQ {
deff[T, F[X<:T]](s: F[T])(implicitc: Co[T, F]) =???
}
traitItr[+A]
traitCo[U, -F[_ <:U]]
objectCo {
implicitdefi[E]:Co[E, Itr] =???
}
classKobjectKextendsVS[K, VH[K]]
traitVS[V, H<:VH[V]] extendsItr[V]
traitVH[+A]
classTest {
// 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 <: TQ.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)
}
The text was updated successfully, but these errors were encountered:
Not sure if it's a bug, or if there are fundamental reasons why inference cannot succeed.
The text was updated successfully, but these errors were encountered: