aa9e48b9b6
Relates to KT-20626
9 lines
290 B
Kotlin
Vendored
9 lines
290 B
Kotlin
Vendored
// "Replace with assignment (original is empty)" "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
|
|
} |