[LL API] Add tests for FIR tree guards

^KT-59297 Fixed
This commit is contained in:
Yan Zhulanow
2023-05-11 22:00:48 +09:00
committed by Space Team
parent 91c3ebac27
commit d04ed56a4d
8 changed files with 490 additions and 1 deletions
@@ -0,0 +1,12 @@
// WITH_STDLIB
import broken.lib.Foo
fun test() {
buildList {
add(1)
add(Foo("foo", 1).result)
}
}
fun <T> consume(a: T) {}