Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt2017.kt
T
2019-11-19 11:00:09 +03:00

9 lines
220 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
fun box(): String {
val sorted = arrayListOf("1", "3", "2").sorted()
return if (sorted != arrayListOf("1", "2", "3")) "$sorted" else "OK"
}