mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
8 lines
128 B
Kotlin
8 lines
128 B
Kotlin
fun Int.component1() = "a"
|
|
|
|
fun foo(a: Number) {
|
|
val (x) = a as Int
|
|
<!DEBUG_INFO_SMARTCAST!>a<!> : Int
|
|
x : String
|
|
}
|