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

10 lines
159 B
Kotlin
Vendored

// IS_APPLICABLE: false
data class XY(val x: Int, val y: Int)
fun create() = XY(1, 2)
fun use(): Int {
val xy = <caret>create()
return xy.x + xy.y
}