blob: 894240fe24482fccec4684a441d8a0c6624386d7 [file]
// LANGUAGE: +ContextParameters
fun box(): String {
context(s: String)
fun f() = s
return with("OK") {
f()
}
}