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

8 lines
101 B
Kotlin

fun box(): String {
if (!false) {
return "OK"
} else {
return "fail"
}
}