Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt5056.kt
T

5 lines
140 B
Kotlin
Vendored

fun box(): String {
val list = arrayOf("a", "c", "b").sorted()
return if (list.toString() == "[a, b, c]") "OK" else "Fail: $list"
}