Files
kotlin-fork/backend.native/tests/external/codegen/box/regressions/kt5056.kt
T
2017-03-13 15:31:46 +03:00

7 lines
157 B
Kotlin

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