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

7 lines
114 B
Plaintext
Vendored

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