Files
kotlin-fork/idea/testData/quickfix/changeSignature/fixExtensionLambdaSignature.kt
T

9 lines
141 B
Kotlin
Vendored

// "Change the signature of function literal" "true"
fun foo(f: Int.(Int, Int) -> Int) {
}
fun test() {
foo { <caret>(a: Int) -> 0 }
}