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