Files
kotlin-fork/idea/testData/quickfix/suspiciousCollectionReassignment/replaceWithAssignment/emptyList.kt.after
T

12 lines
276 B
Plaintext
Vendored

// "Replace with assignment" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// WITH_RUNTIME
fun test(otherList: List<Int>) {
var list = emptyList<Int>()
foo()
bar()
list = otherList
}
fun foo() {}
fun bar() {}