Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
destructuringVariables
/
classProperty.kt
blob: 782401a6932c4beb874706c99159982131376868 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
data
class
XY
(
val x
:
Int
,
val y
:
Int
)
fun create
()
=
XY
(
1
,
2
)
class
Foo
{
val xy
=
<caret>
create
()
}