Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
destructuring
/
delegationInDestructuring.fir.kt
blob: 2e828eaa02e9fefe294213b3723bb67a49f3f588 [
file
]
// WITH_STDLIB
fun foo
()
{
<!
INITIALIZER_REQUIRED_FOR_DESTRUCTURING_DECLARATION
!>
val
(
a
,
b
)
by
listOf
(
1
,
2
)<!>
<!
INITIALIZER_REQUIRED_FOR_DESTRUCTURING_DECLARATION
!>
val
(
c
,
d
)
by
lazy
{
listOf
(
3
,
4
)
}<!>
}