Files
kotlin-fork/idea/testData/intentions/replaceAddWithPlusAssign/nonCollection.kt
T

10 lines
101 B
Kotlin
Vendored

// IS_APPLICABLE: false
class A {
fun add(x: Int) {
}
}
fun foo() {
A().<caret>add(1)
}