blob: c09c5f7082c2dab5ea7066161663bf5e9be3fb5b [file]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
context(a: String)
val p
get() = context(a: String) fun (): String { return a }
fun box(): String {
with("not OK") {
return p("OK")
}
}