Files
kotlin-fork/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/deepHashCode.kt
T
2019-07-10 14:09:35 +03:00

7 lines
123 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.Arrays
fun test() {
val a = arrayOf(1)
val hash = Arrays.<caret>deepHashCode(a)
}