blob: e363cf6c1fe63050b830c230ec2fd5e11f669ce9 [file]
// "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
}