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
From zio/zio#8215
trait Container[T] { def getT(): T } trait Service[+O[_] <: Container[_]] { def giveHello: String } final case class AContainer[T](t: T) extends Container[T] { override def getT() = t } final case class MyConcreteService() extends Service[AContainer] { def giveHello = "Concrete hello!" } object Example extends App { implicitly[MyConcreteService <:< Service[Container]] // true val left = izumi.reflect.Tag[MyConcreteService] val right = izumi.reflect.Tag[Service[Container]] println(left <:< right) // false }
The text was updated successfully, but these errors were encountered:
/bounty $500
Sorry, something went wrong.
/attempt #469
/claim #469
Thank you for contributing to zio/izumi-reflect!
Add a bounty • Share on socials
No branches or pull requests
From zio/zio#8215
The text was updated successfully, but these errors were encountered: