Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
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
()
}
}