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