Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/destructuringParameter.kt
T

7 lines
129 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(f: (Pair<Int, Int>) -> String) {}
fun test() {
foo <caret>{ (i, j) -> "" }
}