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
Trying to derive Show instance from test sources for a case class with List field ends up in compilation error.
Show
List
In tests.scala
tests.scala
case class Attributes(a: String) case class Entry(attributes: Attributes) case class Response(entries: List[Entry])
test("construct a Show product instance") { val res = Show.derived[Response] }
outputs:
[error] java.lang.AssertionError: assertion failed: <notype> class dotty.tools.dotc.ast.Trees$TypeTree -1
The text was updated successfully, but these errors were encountered:
Oh no - that sounds like scala/scala3#13406 - unfortunately I don't think anyone is working on it.
Sorry, something went wrong.
@joroKr21 Thanks for linking the issues - I've voted on it, if it makes any difference :)
No branches or pull requests
Trying to derive
Show
instance from test sources for a case class withList
field ends up in compilation error.In
tests.scala
outputs:
The text was updated successfully, but these errors were encountered: