147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
8 lines
135 B
Plaintext
Vendored
8 lines
135 B
Plaintext
Vendored
import kotlin.collections.List as List1
|
|
|
|
// WITH_RUNTIME
|
|
fun foo() {
|
|
val list: List1<String>
|
|
val secondList = List1(5) { 1 }
|
|
}
|