Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt5056.kt
T
2018-06-09 19:15:38 +03:00

8 lines
182 B
Kotlin
Vendored

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