Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertReferenceToLambda
/
object.kt
blob: 9bfb97f5953a54dfa1038365185fd680518dc043 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
// WITH_RUNTIME
val list
=
listOf
(
1
,
2
,
3
).
map
(<
caret
>
Utils
::
foo
)
object
Utils
{
fun foo
(
x
:
Int
)
=
x
}