Files
kotlin-fork/idea/testData/inspectionsLocal/replaceWithOperatorAssignment/mutableList.kt
T
2018-12-12 15:56:11 +03:00

7 lines
134 B
Kotlin
Vendored

// WITH_RUNTIME
// HIGHLIGHT: GENERIC_ERROR_OR_WARNING
fun foo() {
val list = mutableListOf(1, 2, 3)
list <caret>= list + 4
}