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