Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
analysis-api
/
testData
/
symbols
/
symbolByPsi
/
destructuringDeclaration.kt
blob: 04ee2a0671716f8e27cca8dc0f3796f7af9d083b [
file
]
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
// DO_NOT_CHECK_SYMBOL_RESTORE_K1
data
class
P
(
val x
:
Int
,
val y
:
Int
)
fun destruct
():
Int
{
val
(
l
,
r
)
=
P
(
1
,
2
)
return
l
+
r
}