99e681ec1d
#KT-41679 Fixed
13 lines
413 B
Kotlin
Vendored
13 lines
413 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// ISSUE: KT-41679
|
|
|
|
fun test_1() {
|
|
var y = <!DEBUG_INFO_EXPRESSION_TYPE("kotlin.collections.MutableList<{Comparable<*> & java.io.Serializable}>")!>mutableListOf("MH", 19, true)<!>
|
|
y[0] = "value4"
|
|
}
|
|
|
|
fun test_2(x: Int) {
|
|
var y = <!DEBUG_INFO_EXPRESSION_TYPE("kotlin.collections.MutableList<{Comparable<*> & java.io.Serializable}>")!>mutableListOf("MH", x, true)<!>
|
|
y[0] = "value4"
|
|
}
|