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

6 lines
136 B
Plaintext
Vendored

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