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

15 lines
432 B
Kotlin
Vendored

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