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

16 lines
157 B
Kotlin
Vendored

fun main() {
val a = 1
if (a == 0) {
"then"
} else {
"else"
}
}
//0 ICONST_0
//1 ICONST_1
//0 IFEQ
//1 IFNE
//1 IF
//1 GOTO