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

9 lines
140 B
Kotlin
Vendored

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