Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
referenceAsArg.kt
blob: 91f8e9bf22c0280bb45b2b01b2553139c7d2c685 [
file
]
inline
fun
String
.
app
(
f
:
(
String
)
->
String
)
=
f
(
this
)
fun fff
(
s
:
String
,
n
:
Int
=
42
)
=
s
fun box
()
=
"OK"
.
app
(::
fff
)