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

7 lines
139 B
Plaintext
Vendored

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