2c0cf9cad8
This commit explicitly splits raw fir builder in lazy mode on AST and stubs. By default, in tests we have an AST tree loaded, so all our `disallowTreeLoading` is useless in unit tests mode ^KT-64646 Fixed ^KT-64898 ^KT-64899 ^KT-64900 ^KT-64901
11 lines
272 B
Kotlin
Vendored
11 lines
272 B
Kotlin
Vendored
// IGNORE_TREE_ACCESS: KT-64899
|
|
package util
|
|
|
|
if (true) {
|
|
@DestrAnno("destr 1 $prop")
|
|
val (@LeftAnno("a $prop") a, @RightAnno("b $prop") b) = 0 to 1
|
|
|
|
@Destr2Anno("destr 1 $prop")
|
|
val (@SecondLeftAnno("c $prop") c, @SecondRightAnno("d $prop") d) = 2 to 3
|
|
}
|