mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
9 lines
208 B
Kotlin
Vendored
9 lines
208 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
fun foo(arr: Array<out Number>): Int {
|
|
@Suppress("UNCHECKED_CAST")
|
|
val result = (arr as Array<Int>)[0]
|
|
checkSubtype<Array<Int>>(<!DEBUG_INFO_SMARTCAST!>arr<!>)
|
|
return result
|
|
}
|