Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
destructuringVariables
/
var.kt
blob: bb627fa3efc868da65731542cfc3375c96ddaf0f [
file
] [
log
] [
blame
]
data
class
XY
(
val x
:
Int
,
val y
:
Int
)
fun create
()
=
XY
(
1
,
2
)
fun
use
():
Int
{
var
<caret>
xy
=
create
()
return
xy
.
x
+
xy
.
y
}