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