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