mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
6 lines
147 B
Kotlin
6 lines
147 B
Kotlin
fun foo(arr: Array<out Number>): Int {
|
|
val result = (arr as Array<Int>)[0]
|
|
<!DEBUG_INFO_SMARTCAST!>arr<!> : Array<Int>
|
|
return result
|
|
}
|