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