7d6cb7805c
In particular, fill, reverse, shuffle, sort calls are reported So #KT-22011 Fixed
10 lines
198 B
Kotlin
Vendored
10 lines
198 B
Kotlin
Vendored
import java.util.Collections
|
|
|
|
fun test() {
|
|
val immutableList = listOf(1, 2)
|
|
Collections.reverse(immutableList)
|
|
|
|
val mutableList = mutableListOf(1)
|
|
Collections.reverse(mutableList)
|
|
}
|