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

7 lines
116 B
Kotlin
Vendored

fun test() {
foo1(<caret>::convert2)
}
fun foo1(convert: (Int) -> Unit) {}
fun convert2(i: Int, j: Int = 0) {}