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

9 lines
125 B
Kotlin
Vendored

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