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