Files
kotlin-fork/compiler/testData/diagnostics/tests/substitutions/kt1558-short.kt
T

6 lines
155 B
Kotlin
Vendored

// FIR_IDENTICAL
fun <E> List<*>.toArray(ar: Array<E>): Array<E> = ar
fun testArrays(ci : List<Int>) {
ci.toArray<Int>(<!UNRESOLVED_REFERENCE!>x<!>)
}