mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
273 B
Kotlin
Vendored
13 lines
273 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
fun arrayAccessRHS(a: Int?, b: Array<Int>) {
|
|
b[0] = a!!
|
|
checkSubtype<Int>(<!DEBUG_INFO_SMARTCAST!>a<!>)
|
|
}
|
|
|
|
fun arrayAccessLHS(a: Int?, b: Array<Int>) {
|
|
b[a!!] = <!DEBUG_INFO_SMARTCAST!>a<!>
|
|
checkSubtype<Int>(<!DEBUG_INFO_SMARTCAST!>a<!>)
|
|
}
|
|
|