Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
script
/
nameBasedDestructuring.kts
blob: c629ace9e81ae6f19af6a6a1f7013e34c95059be [
file
]
// LANGUAGE: +NameBasedDestructuring
// ISSUE: KT-81555
// simple.kts
var
result
=
"getter must be called"
class
C
{
val myProp
:
String
get
()
{
result
=
"OK"
return
""
}
}
(
val _
=
myProp
)
=
C
()
// expected: result: OK