// TARGET_BACKEND: JVM // JVM_TARGET: 1.8 // LAMBDAS: INDY fun box(): String { var ok = "Failed" { ok = "OK" }() return ok }