Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
moveSuspiciousCallableReferenceIntoParentheses
/
defaultParameter.kt
blob: 9d20623069802bb9e2994b012ea75b41ca0b5006 [
file
]
// PROBLEM: Suspicious callable reference as the only lambda element
// WITH_RUNTIME
fun foo
()
{
listOf
(
1
,
2
,
3
).
map
{<
caret
>
it
::
toString
}
}