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