WARNING: A terminally deprecated method in sun.misc.Unsafe has been called
WARNING: sun.misc.Unsafe::objectFieldOffset has been called by com.intellij.util.containers.Unsafe (file:/D:/site/kotlinc/lib/kotlin-compiler.jar)
WARNING: Please consider reporting this to the maintainers of class com.intellij.util.containers.Unsafe
WARNING: sun.misc.Unsafe::objectFieldOffset will be removed in a future release
..\example\kotlin\kotlin_strings_touppercase.kts:2:13: error: 'fun String.toUpperCase(): String' is deprecated. Use uppercase() instead.
println(txt.toUpperCase())   // �� "HELLO WORLD"
            ^
..\example\kotlin\kotlin_strings_touppercase.kts:3:13: error: 'fun String.toLowerCase(): String' is deprecated. Use lowercase() instead.
println(txt.toLowerCase())   // �� "hello world"
            ^