2cdc246a27
#KT-11023 Fixed
8 lines
176 B
Plaintext
Vendored
8 lines
176 B
Plaintext
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
import java.util.Collections
|
|
|
|
fun test() {
|
|
val mutableList = mutableListOf(1, 2)
|
|
mutableList.sortWith(Comparator { a, b -> a.compareTo(b) })
|
|
}
|