mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
18 lines
193 B
Kotlin
Vendored
18 lines
193 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test1() {
|
|
val a = Unit
|
|
|
|
if (a != null) {
|
|
println("X1")
|
|
}
|
|
|
|
if (a == null) {
|
|
println("X2")
|
|
}
|
|
}
|
|
|
|
// 0 IFNULL
|
|
// 0 IFNONNULL
|
|
// 1 X1
|
|
// 0 X2 |