Files
kotlin/compiler/testData/codegen/box/lazyCodegen/optimizations/negateObjectComp2.kt
2019-11-19 11:00:09 +03:00

10 lines
154 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
val p: Int? = 1;
val z: Int? = 2;
fun box(): String {
if (!(p!! < z!!)) {
return "fail"
}
return "OK"
}