Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
destructuring1.kt
blob: 6b3f5aabcfdae0fe0907d360b2763c8f7122c728 [
file
]
object
A
object
B
{
operator
fun A
.
component1
()
=
1
operator
fun A
.
component2
()
=
2
}
fun B
.
test
()
{
val
(
x
,
y
)
=
A
}