Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
contextualLocalFunction.kt
blob: 63d3959a0f0ed51329eb266853aa5f3f8c0799a9 [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
fun box
():
String
{
context
(
s
:
String
)
fun f
()
=
s
return
with
(
"OK"
)
{
f
()
}
}