4bd604f2ed
^KT-54311
8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
|
|
data class P(val x: Int, val y: Int)
|
|
|
|
fun destruct(): Int {
|
|
val (l, r) = P(1, 2)
|
|
return l + r
|
|
}
|