Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
script
/
destructuringDeclaration.kts
blob: d488272d78af5d61d0c38d5c6962fda3c76bb8fd [
file
] [
log
] [
blame
]
val
(
abc
,
def
)
=
A
()
val rv
=
abc
+
def
class
A
{
operator
fun component1
()
=
123
operator
fun component2
()
=
2
}
// expected: rv: 125