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

11 lines
205 B
Kotlin
Vendored

// WITH_RUNTIME
data class XY(val x: String, val y: String)
fun convert(xy: XY, foo: (XY) -> Unit) = foo(xy)
fun foo(xy: XY) = convert(xy) <caret>{
val x = it.x
val y = it.y
println(x + y)
}