Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
cli
/
metadata
/
lambdaWithReceiver.kt
blob: 776010cd516d949f3315a2e2bbc421e2647b9825 [
file
] [
log
] [
blame
]
fun foo
()
{
"OK"
.
apply
{
this
}
"OK"
.
apply2
{
this
}
}
inline
fun
String
.
apply2
(
f
:
String
.()
->
String
)
=
this
.
f
()