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

8 lines
180 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
import java.util.Arrays
fun test() {
val array = arrayOf(1, 2, 3)
val result = Arrays.<caret>copyOf(array, 3, Array<Double>::class.java)
}