Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/cloneArray.kt
T
2020-03-19 09:51:01 +03:00

7 lines
105 B
Kotlin
Vendored

fun test_1(array: Array<String>) {
array.clone()
}
fun test_2(array: IntArray) {
array.clone()
}