c0f4f7fefd
We have inconsistency in lazy body calculator, but only tests are affected, because in the production we recreated bodies anyway ^KT-62840
16 lines
333 B
Kotlin
Vendored
16 lines
333 B
Kotlin
Vendored
// IGNORE_TREE_ACCESS: KT-64899
|
|
// IGNORE_BODY_CALCULATOR
|
|
package util
|
|
|
|
if (true) {
|
|
@DestrAnno("destr 1 $prop")
|
|
val (@LeftAnno("a $prop") a, @RightAnno("b $prop") b) = 0 to 1
|
|
|
|
run {
|
|
println()
|
|
}
|
|
|
|
@Destr2Anno("destr 1 $prop")
|
|
val (@SecondLeftAnno("c $prop") c, @SecondRightAnno("d $prop") d) = 2 to 3
|
|
}
|