Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
contextualLocalFunAndTopLevelFun.kt
blob: 9e4dd4a1d5e1e608895841f46f035c3c50feb9ff [
file
]
// LANGUAGE: +ContextParameters
fun context
(
a
:
String
)
{
}
fun box
():
String
{
context
(
a
:
String
)
fun foo
():
String
{
return
a
}
with
(
"OK"
)
{
return
foo
()
}
}