Files
kotlin-fork/idea/testData/inspectionsLocal/javaCollectionsStaticMethod/shuffleRandom.kt.after
T

8 lines
137 B
Plaintext
Vendored

// RUNTIME_WITH_FULL_JDK
import java.util.*
fun test() {
val mutableList = mutableListOf(1, 2)
mutableList.shuffle(Random(1))
}