Files
kotlin/compiler/testData/codegen/bytecodeText/conditions/nullCompareInIf.kt

15 lines
203 B
Kotlin
Vendored

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