2cdc246a27
#KT-11023 Fixed
8 lines
157 B
Kotlin
Vendored
8 lines
157 B
Kotlin
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
import java.util.*
|
|
|
|
fun test() {
|
|
val mutableList = mutableListOf(1, 2)
|
|
<caret>Collections.shuffle(mutableList, Random(1))
|
|
}
|