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
At first I encountered this issue in Typelevel Scala: typelevel/scala#162
After fiddling with LBS and shapeless's Witness, I hit this error again, so it should be handled as an LBS issue.
Witness
import shapeless.Witness val three = Witness(3) type Three = three.T type Something[T] = shapeless.Witness.Aux[T] implicitly[shapeless.Witness.Aux[Three]] //works implicitly[Something[Three]] //implicit not found
As far as I manage to figure out, you need all three features to hit this error:
I recommend, if possible, to resolve this before SIP23 (scala/scala#5310) is merged, since it might trip newcomers to the feature.
The text was updated successfully, but these errors were encountered:
I suspect that this might be the same issue, or at least related to, the .deconst/.dealias /&c. issue @retronym brought up over here.
.deconst
.dealias
Sorry, something went wrong.
This unsolvable without a SIP, so SIP23 took care of this. See typelevel/scala#162
No branches or pull requests
At first I encountered this issue in Typelevel Scala:
typelevel/scala#162
After fiddling with LBS and shapeless's
Witness
, I hit this error again, so it should be handled as an LBS issue.As far as I manage to figure out, you need all three features to hit this error:
I recommend, if possible, to resolve this before SIP23 (scala/scala#5310) is merged, since it might trip newcomers to the feature.
The text was updated successfully, but these errors were encountered: