Files
kotlin-fork/idea/testData/intentions/replaceAddWithPlusAssign/addGeneric.kt
T
2017-10-10 22:48:39 +03:00

5 lines
95 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun <C : MutableCollection<Int>> foo(col: C) {
col.<caret>add(0)
}