Files
kotlin-fork/backend.native/tests/external/codegen/box/lazyCodegen/optimizations/negateFalseVarChain.kt
T
2017-03-13 15:31:46 +03:00

8 lines
119 B
Kotlin

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