Files
kotlin-fork/compiler/testData/codegen/bytecodeText/conditions/negatedZeroCompare.kt
T
2018-12-21 16:20:45 +01:00

17 lines
182 B
Kotlin
Vendored

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