Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
inference
/
kt32429.kt
blob: 6239527b13f89d85967f76e29e5acd3307d02a4f [
file
]
// TARGET_BACKEND: JVM
// WITH_STDLIB
// ISSUE: KT-32429
import
kotlin
.
properties
.
Delegates
.
observable
class
Test
{
var
test
by
observable
(
0
)
{
_
,
_
,
_
->
}
}
fun box
():
String
=
"OK"