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

7 lines
121 B
Plaintext
Vendored

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