Files
kotlin-fork/idea/testData/intentions/destructuringVariables/simple.kt.after
T

8 lines
125 B
Plaintext
Vendored

data class XY(val x: Int, val y: Int)
fun create() = XY(1, 2)
fun use(): Int {
val (x, y) = create()
return x + y
}