Files
kotlin-fork/idea/testData/inspectionsLocal/moveSuspiciousCallableReferenceIntoParentheses/parameterOuter.kt
T
2018-03-21 09:53:38 +03:00

6 lines
146 B
Kotlin
Vendored

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