blob: 1566cfc0c30641d0968f111e376e0bbeca8642ff [file]
// ISSUE: KT-51960
// LANGUAGE: +ContextParameters
// IGNORE_BACKEND_K1: ANY
class Context
class Extended
private inline fun build(block: context(Context) Extended.() -> Unit) {
block(Context(), Extended())
}
fun box(): String {
build {}
return "OK"
}