Files
kotlin/compiler/testData/codegen/bytecodeText/lazyCodegen/negateConstantCompare.kt
2019-10-05 10:52:59 +02:00

13 lines
142 B
Kotlin
Vendored

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