Files
kotlin-fork/analysis/low-level-api-fir/testdata/errorResistance/builderInference.kt
T
Yan Zhulanow d04ed56a4d [LL API] Add tests for FIR tree guards
^KT-59297 Fixed
2023-06-30 14:26:43 +00:00

12 lines
150 B
Kotlin

// WITH_STDLIB
import broken.lib.Foo
fun test() {
buildList {
add(1)
add(Foo("foo", 1).result)
}
}
fun <T> consume(a: T) {}