Files
kotlin-fork/compiler/testData/diagnostics/tests/substitutions/kt1558-short.kt
T
2013-10-01 15:11:30 +04:00

5 lines
138 B
Kotlin
Vendored

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