Files
kotlin/compiler/testData/codegen/box/lazyCodegen/optimizations/negateObjectComp.kt
2019-12-11 16:54:15 +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"
}