Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableListOf.kt
T

7 lines
146 B
Kotlin
Vendored

// WITH_RUNTIME
// FIX: Replace with `mutableListOf` function
import java.util.Arrays
fun test() {
val a = Arrays.<caret>asList(1, 3, null)
}