Files
kotlin-fork/idea/testData/inspectionsLocal/moveSuspiciousCallableReferenceIntoParentheses/invalidFunctionReference2.kt
T
2018-08-15 12:36:00 +03:00

6 lines
114 B
Kotlin
Vendored

// WITH_RUNTIME
// FIX: none
fun test(x: Int) {
val p = { _: String -> true }
x.run {<caret> p::invoke }
}