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

8 lines
100 B
Kotlin

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