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
repo to reproduce: https://github.com/augustjune/context-applied
in a few words:
scalaVersion := "2.13.12", libraryDependencies += compilerPlugin("org.augustjune" %% "context-applied" % "0.1.4"),
code
trait X[A] { def f(a: A): Int } implicit def derive[A: X, B: X] = new X[(A, B)] { override def f(a: (A, B)): Int = ??? }
leads to
[error] ## Exception when compiling 1 sources to /Users/alexr/dev/pp/scala-course-2-13-12/plain2/target/scala-2.13/classes [error] java.lang.UnsupportedOperationException: Position.point on NoPosition [error] scala.reflect.internal.util.Position.fail(Position.scala:24) ...
which basically understandable, but there is no understandable output.
can be fixed by:
context-applied
:X[(A, B)]
derive
scalaVersion := "2.13.11"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
repo to reproduce:
https://github.com/augustjune/context-applied
in a few words:
code
leads to
which basically understandable, but there is no understandable output.
can be fixed by:
context-applied
plugin OR:X[(A, B)]
toderive
function ORscalaVersion := "2.13.11"
The text was updated successfully, but these errors were encountered: