aa9e48b9b6
Relates to KT-20626
11 lines
298 B
Kotlin
Vendored
11 lines
298 B
Kotlin
Vendored
// "Replace with assignment (original is empty)" "false"
|
|
// ACTION: Replace overloaded operator with function call
|
|
// ACTION: Replace with ordinary assignment
|
|
// WITH_RUNTIME
|
|
class Test {
|
|
var list = emptyList<Int>()
|
|
fun test(otherList: List<Int>) {
|
|
list +=<caret> otherList
|
|
}
|
|
}
|