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
apply
Exception occurred while executing macro expansion. scala.quoted.runtime.impl.ExprCastException: Expected type: chester.syntax.core.Intersection Actual type: chester.syntax.core.Term Expression: chester.syntax.core.Intersection.apply(params.apply(0).asInstanceOf[scala.collection.immutable.Vector[chester.syntax.core.Term]])
I am having
case class Intersection(xs: Vector[Term]) extends Term derives ReadWriter { ... } object Intersection { def apply(xs: Vector[Term]): Term = ...
The text was updated successfully, but these errors were encountered:
It is better to use new SomeCaseClass() instead of SomeCaseClass.apply()
new SomeCaseClass()
SomeCaseClass.apply()
Sorry, something went wrong.
#607 I think upickle uses apply on purpose .
Successfully merging a pull request may close this issue.
I am having
The text was updated successfully, but these errors were encountered: