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