blob: fa08e669ae142186bc29a0b19592c4a71661e327 [file]
// ISSUE: KT-77713
// WITH_STDLIB
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
// CHECK_BYTECODE_TEXT
context(s: String)
fun foo() = s
fun bar(f: () -> String) = f()
inline fun baz(crossinline f: () -> String) = bar { f() }
context(_: String)
fun qux() = baz { foo() }
fun box() = context("OK") { qux() }
// 0 unused var\$inlined