Files
Ivan Kylchik 156ff92845 [kotlin:testdata] Replace all occurrences of WITH_RUNTIME with WITH_STDLIB
We are going to deprecate `WITH_RUNTIME` directive in kotlin test
infrastructure. The main reason behind this change is that
`WITH_STDLIB` directive better describes its meaning,
specifically it will add kotlin stdlib to test's classpath.

GitOrigin-RevId: 73a702b404ed63e728ad85fa750d5d87ce5bc7f4
2021-11-19 19:27:17 +00:00

7 lines
199 B
Kotlin

// WITH_STDLIB
import kotlin.collections.List as <info descr="null">~List1</info>
fun main() {
val a: <info descr="null">List1</info><Int>
val b = <info descr="null">List1</info>(5) { 42 }
}