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

11 lines
122 B
Kotlin
Vendored

val p: Int? = 1;
val z: Int? = 2;
fun test3() {
if (!(p!! < z!!)) {
val p = 1
}
}
// 2 IFNONNULL
// 3 IF