8e2b90b5db
^KT-49829 Fixed
12 lines
269 B
Kotlin
Vendored
12 lines
269 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// For FIR: see KT-50293
|
|
|
|
fun main() {
|
|
val list = buildList {
|
|
add("one")
|
|
add("two")
|
|
|
|
val secondParameter = get(1)
|
|
println(secondParameter as String) // WARNING: [CAST_NEVER_SUCCEEDS] This cast can never succeed
|
|
}
|
|
} |