Files
kotlin-fork/idea/testData/intentions/destructuringInLambda/list.kt.after
T

5 lines
116 B
Plaintext
Vendored

// WITH_RUNTIME
data class XY(val x: String, val y: String)
fun foo(list: List<XY>) = list.map { (x, y) -> x + y }