Files
kotlin-fork/idea/testData/inspectionsLocal/moveSuspiciousCallableReferenceIntoParentheses/parameter.kt
T
2017-04-27 18:21:27 +03:00

6 lines
149 B
Kotlin
Vendored

// FIX: Move suspicious callable reference into parentheses '()'
// WITH_RUNTIME
fun foo() {
listOf(1,2,3).map {<caret> bar -> bar::toString }
}