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