Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt2017.kt
T
2022-01-05 13:12:32 +01:00

7 lines
164 B
Kotlin
Vendored

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