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

13 lines
101 B
Plaintext
Vendored

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