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
Show
The following code (ammonite):
import $ivy.`eu.timepit::refined-cats:0.9.2` import cats.implicits._ import eu.timepit.refined.auto._ import eu.timepit.refined.cats._ import eu.timepit.refined.types.string.NonEmptyString val s: NonEmptyString = "abc" s.show
results in the following compile-time error.
diverging implicit expansion for type cats.Contravariant[G] starting with method refTypeViaMonadError in package cats
Changing to import eu.timepit.refined.cats.refTypeShow makes the example compile.
import eu.timepit.refined.cats.refTypeShow
The text was updated successfully, but these errors were encountered:
Reproduce #553
399ba71
Thanks for the report @vlovgr. I've started working on this in #554.
Sorry, something went wrong.
Fixed by #554
No branches or pull requests
The following code (ammonite):
results in the following compile-time error.
Changing to
import eu.timepit.refined.cats.refTypeShow
makes the example compile.The text was updated successfully, but these errors were encountered: