Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
contextualLocalFunction.kt
blob: 894240fe24482fccec4684a441d8a0c6624386d7 [
file
]
// LANGUAGE: +ContextParameters
fun box
():
String
{
context
(
s
:
String
)
fun f
()
=
s
return
with
(
"OK"
)
{
f
()
}
}