Files
kotlin-fork/idea/testData/refactoring/inline/inlineVariableOrProperty/AppendToCollection.kt
T
2017-05-26 16:37:35 +03:00

4 lines
79 B
Kotlin
Vendored

fun foo(list: MutableList<Int>) {
val <caret>list1 = list
list1 += 10
}