mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
7 lines
120 B
Kotlin
7 lines
120 B
Kotlin
fun test(a: Any?) {
|
|
if (a != null) {
|
|
<!DEBUG_INFO_SMARTCAST!>a<!>.foo(11)
|
|
}
|
|
}
|
|
|
|
fun <T> Any.foo(t: T) = t |