Files
kotlin/compiler/testData/codegen/bytecodeText/lazyCodegen/negateConst.kt
Michael Bogdanov 3a70992d27 Lazy intrinsic generation
#KT-6241 Fixed
2014-11-21 13:59:43 +03:00

12 lines
123 B
Kotlin
Vendored

fun test4() {
if (!false) {
val p = 1
}
}
fun test5() {
if (!true) {
val p = 1
}
}
// 0 IF