scala.compiletime.testing.ErrorKind.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-library_3 Show documentation
Show all versions of scala3-library_3 Show documentation
scala3-library-bootstrapped
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