Questions tagged [dotty]

Kindly make sure to include the [scala-3] tag when submitting any queries related to Scala 3. Dotty served as a testing ground for pioneering language ideas and compiler advancements in the realm of Scala. The building blocks driving these innovations are explored in DOT, a framework designed for dependent object types. The majority of these cutting-edge technologies have been seamlessly integrated into Scala 3.

Circe is unable to detect a field if it includes an array

There are 2 different scenarios I'm dealing with: one where I can successfully decode a single user, and another where decoding a list of users fails: import User._ import io.circe._ import io.circe.syntax._ import io.circe.parser.decode class UserSu ...