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
The following should work:
trait X trait XAble[_ <: X] class Y extends X def getTag[F[_ <: X]: Tag.auto.T] = Tag[F[Y]] getTag[XAble] // Tag[XAble[Y]]
The text was updated successfully, but these errors were encountered:
Fix partially zio#30 (only Scala 3)
fc9d748
8bc7c06
Fix partially #30 (only Scala 3) (#278)
ff7fe84
This is already fixed on Scala 3:
type `TagK<:Dep`[K[_ <: Dep]] = Tag.auto.T[K] def t[T[_ <: Dep]: `TagK<:Dep`, A <: Dep: Tag] = Tag[T[A]] assert(t[Trait3, Dep].tag == Tag[Trait3[Dep]].tag)
But not fixed on Scala 2.
Sorry, something went wrong.
/bounty $150
/attempt #30
/claim #30
Thank you for contributing to zio/izumi-reflect!
Add a bounty • Share on socials
neko-kai
No branches or pull requests
The following should work:
The text was updated successfully, but these errors were encountered: