Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
contextualAnonymousFunction.kt
blob: 039d7c725695b5bd660b42d9516fcb2471a67000 [
file
]
// IGNORE_BACKEND_K1: ANY
// LANGUAGE: +ContextParameters
fun box
():
String
{
val f
=
context
(
a
:
String
)
fun
()
=
a
return
f
(
"O"
)
+
with
(
"K"
)
{
f
()
}
}