7 lines
176 B
Kotlin
Vendored
7 lines
176 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
// ERROR: Type mismatch: inferred type is List<Any> but List<String> was expected
|
|
fun test() {
|
|
var list = listOf("")
|
|
list <caret>+= 1
|
|
} |