scala.compiletime.testing.Error.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
/** Represents a compile-time error.
*
* @see scala.compiletime.testing.typeCheckErrors
*
* IMPORTANT: No stability guarantees are provided on the format of these
* errors. This means the format and the API may change from
* version to version. This API is to be used for testing purposes
* only.
*/
final case class Error(message: String, lineContent: String, column: Int, kind: ErrorKind)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy