Files
kotlin/compiler/testData/codegen/bytecodeText/lazyCodegen/negateConstantCompare.kt
2018-12-21 16:20:45 +01:00

14 lines
168 B
Kotlin
Vendored

// !LANGUAGE: -InlineConstVals
// IGNORE_BACKEND: JVM_IR
const val one = 1
const val two = 2
fun test1() {
if (!(one < two)) {
val p = 1
}
}
// 1 IF