Files
kotlin-fork/idea/testData/quickfix/suspiciousCollectionReassignment/joinWithInitializer/simple.kt.after
T

9 lines
283 B
Plaintext
Vendored

// "Join with initializer" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.SuspiciousCollectionReassignmentInspection
// WITH_RUNTIME
fun test(otherList: List<Int>) {
var list = createList() + otherList<caret>
// comment
}
fun createList(): List<Int> = listOf(1, 2, 3)