12 lines
274 B
Plaintext
Vendored
12 lines
274 B
Plaintext
Vendored
// "Replace with assignment" "true"
|
|
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
|
|
// WITH_RUNTIME
|
|
fun test(otherList: Set<Int>) {
|
|
var list = emptySet<Int>()
|
|
foo()
|
|
bar()
|
|
list = otherList
|
|
}
|
|
|
|
fun foo() {}
|
|
fun bar() {} |