blob: 039d7c725695b5bd660b42d9516fcb2471a67000 [file]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
fun box(): String {
val f = context(a: String) fun () = a
return f("O") + with("K") {
f()
}
}