Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertReferenceToLambda
/
nestedLambdaWithReceiver.kt
blob: dff8ce2e25fb317b541dacfb5b3e0ae251f0a622 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
// WITH_RUNTIME
fun foo
()
{
listOf
(
1
).
forEach
{
run
(<
caret
>
it
::
bar
)
}
}
fun
Int
.
bar
()
{
}