Files
kotlin-fork/idea/testData/quickfix/changeSignature/beforeFixExtensionLambdaSignature.kt
T
2015-03-24 16:41:07 +03:00

9 lines
141 B
Kotlin

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