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