mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
179 B
Kotlin
Vendored
10 lines
179 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
operator fun Int.component1() = "a"
|
|
|
|
fun foo(a: Number) {
|
|
val (x) = a as Int
|
|
checkSubtype<Int>(<!DEBUG_INFO_SMARTCAST!>a<!>)
|
|
checkSubtype<String>(x)
|
|
}
|