Files
kotlin/compiler/testData/codegen/bytecodeText/conditions/nullCompare.kt
2015-04-07 17:28:01 +03:00

15 lines
168 B
Kotlin
Vendored

fun main(p: String?) {
if (p == null) {
"then"
} else {
"else"
}
}
//0 ICONST_0
//0 ICONST_1
//0 ACONST_NULL
//1 IFNONNULL
//1 IF
//1 GOTO