Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt395.kt
blob: a563a7eee6dadc8dec31fcea4ce7383eb4d6cbb2 [
file
]
fun
Any
.
with
(
operation
:
Any
.()
->
Any
)
=
operation
().
toString
()
val f
=
{
a
:
Int
->
}
fun box
()
:
String
{
return
if
(
20.with
{
this
}
==
"20"
)
"OK"
else
"fail"
}