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