blob: a72d4c5dcfb2583949e902ca26f403516cfba229 [file]
// LANGUAGE: -ProhibitSimplificationOfNonTrivialConstBooleanExpressions
// IGNORE_BACKEND_K2: JVM_IR, JS_IR, JS_IR_ES6, NATIVE, WASM
// FIR status: don't support legacy feature
fun box() : String = when (true) {
((true)) -> "OK"
(1 == 2) -> "Not ok"
}