Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt2017.kt
T
2015-10-07 22:36:43 +03:00

4 lines
147 B
Kotlin
Vendored

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