All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.compiletime.testing.ErrorKind.scala Maven / Gradle / Ivy

The newest version!
package scala.compiletime.testing

/** An error can be either a parse-time or a typecheck-time */
sealed trait ErrorKind // This should be an enum but currently, Dotty lib fails to
                       // compile with an obscure error.
object ErrorKind:
  case object Parser extends ErrorKind
  case object Typer extends ErrorKind




© 2015 - 2024 Weber Informatics LLC | Privacy Policy