9 lines
270 B
Kotlin
Vendored
9 lines
270 B
Kotlin
Vendored
// "Replace with assignment" "false"
|
|
// ACTION: Replace overloaded operator with function call
|
|
// ACTION: Replace with ordinary assignment
|
|
// WITH_RUNTIME
|
|
fun test(otherList: List<Int>) {
|
|
var list: List<Int>
|
|
list = emptyList<Int>()
|
|
list +=<caret> otherList
|
|
} |