Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertReferenceToLambda
/
itClash.kt.after
blob: 0fac9bec33a38efe9f0aba1eaa4b169f6c5bb4a9 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
// WITH_RUNTIME
fun foo
()
{
listOf
(
1
).
forEach
{
(-
it
).
let
{
arg
->
it
.
bar
(
arg
)
}
}
}
fun
Int
.
bar
(
arg
:
Int
)
{
}