mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
- render the whole line where the error/warning points to, if any, and another line with '^', like other compilers do - lowercase diagnostic severity - decapitalize the message if it doesn't start with a proper name
17 lines
664 B
Plaintext
Vendored
17 lines
664 B
Plaintext
Vendored
compiler/testData/cli/jvm/classpath.kt:8:9: warning: variable 'a' is never used
|
|
val a = Big5() // charsets.jar
|
|
^
|
|
compiler/testData/cli/jvm/classpath.kt:9:9: warning: variable 'c' is never used
|
|
val c = DNSNameService() // dnsns.ajr
|
|
^
|
|
compiler/testData/cli/jvm/classpath.kt:10:9: warning: variable 'e' is never used
|
|
val e : Cipher? = null // jce.jar
|
|
^
|
|
compiler/testData/cli/jvm/classpath.kt:11:9: warning: variable 'f' is never used
|
|
val f : SunJCE? = null // sunjce_provider.jar
|
|
^
|
|
compiler/testData/cli/jvm/classpath.kt:12:9: warning: variable 'j' is never used
|
|
val j : ByteBuffered? = null // rt.jar
|
|
^
|
|
OK
|