Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
contextualLocalFunAndTopLevelFun.kt
blob: 2f0e87419f9ab664bd5d42bf19ca155b4e5773df [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
fun context
(
a
:
String
)
{
}
fun box
():
String
{
context
(
a
:
String
)
fun foo
():
String
{
return
a
}
with
(
"OK"
)
{
return
foo
()
}
}