Files
kotlin-fork/idea/testData/quickfix/suspiciousCollectionReassignment/joinWithInitializer/used.kt
T

15 lines
458 B
Kotlin
Vendored

// "Join with initializer" "false"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// ACTION: Change type to mutable
// ACTION: Replace overloaded operator with function call
// ACTION: Replace with ordinary assignment
// WITH_RUNTIME
fun test(otherList: List<Int>) {
var list = createList()
foo(list)
list <caret>+= otherList
}
fun createList(): List<Int> = listOf(1, 2, 3)
fun foo(list: List<Int>) {}