Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
operatorToFunction
/
notApplicableFunctionCallWithCallableReference.kt
blob: d643ba974162bc3d8f3f29a222f4b64ea4572411 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo
()
{
val bar
=
{
x
:
Int
->
x
+
1
}
val incremented
=
listOf
(
1
,
2
,
3
).
map
<caret>
(
bar
)
}