blob: ced305d68c6d8da87c7dbc6cf49319d432882c64 [file]
// "Replace with assignment (original is empty)" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// WITH_RUNTIME
fun test(otherList: Set<Int>) {
var list = setOf<Int>()
foo()
bar()
list = otherList
}
fun foo() {}
fun bar() {}