mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
9 lines
134 B
Plaintext
9 lines
134 B
Plaintext
fun test() {
|
|
val out : Int? = null
|
|
val x : Nothing? = null
|
|
if (out != x)
|
|
out.plus(1)
|
|
if (out == x) return
|
|
out.plus(1)
|
|
}
|