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

13 lines
111 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
x(1) {<caret> ::y }
}
fun y() {
}
fun x(number: Int, func: () -> Unit) {
}