Files
kotlin-fork/idea/testData/inspectionsLocal/replaceArraysCopyOfWithCopyOf/simple.kt.after
T

7 lines
124 B
Plaintext
Vendored

// WITH_RUNTIME
import java.util.Arrays
fun test() {
val array = intArrayOf(1, 2, 3)
val result = array.copyOf(3)
}