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

9 lines
124 B
Kotlin
Vendored

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