Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/referencedFunctionWithDefaultArugment2.kt
T
2020-06-26 10:20:29 +03:00

7 lines
129 B
Kotlin
Vendored

fun test() {
foo2(<caret>::convert3)
}
fun foo2(convert: (Int, Int) -> Unit) {}
fun convert3(i: Int, j: Int, k: Int = 0) {}