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

6 lines
111 B
Kotlin
Vendored

// WITH_RUNTIME
// FIX: none
fun test(x: Int) {
fun p(s: String): Boolean = true
x.let {<caret> ::p }
}