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

7 lines
86 B
Kotlin

fun box(): String {
if (!(1 < 2)) {
return "fail"
}
return "OK"
}