Files
kotlin-fork/idea/testData/inspections/javaCollectionsStaticMethodOnImmutableList/test.kt
T
Toshiaki Kameyama 7d6cb7805c Add inspection: Java mutator method used on immutable Kotlin Collections
In particular, fill, reverse, shuffle, sort calls are reported
So #KT-22011 Fixed
2018-02-28 11:52:44 +03:00

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)
}