blob: 0822a62e16ef6f0c63a31e63eda35db78bc40d73 [file]
// LANGUAGE: +ContextParameters
fun box(): String {
with("O") {
return (context(a: String) fun (y: String): String = a + y)("K")
}
}