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

8 lines
153 B
Kotlin
Vendored

// RUNTIME_WITH_FULL_JDK
import java.util.Collections
fun test() {
val mutableList = mutableListOf(1, 2)
<caret>Collections.sort(mutableList)
}