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

9 lines
142 B
Kotlin

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