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