mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
9 lines
188 B
Kotlin
9 lines
188 B
Kotlin
fun test() {
|
|
val out : Int? = null
|
|
val x : Nothing? = null
|
|
if (out != x)
|
|
<!DEBUG_INFO_SMARTCAST!>out<!>.plus(1)
|
|
if (out == x) return
|
|
<!DEBUG_INFO_SMARTCAST!>out<!>.plus(1)
|
|
}
|