10 lines
148 B
Kotlin
Vendored
10 lines
148 B
Kotlin
Vendored
// "Replace with safe (?.) call" "true"
|
|
class A {
|
|
operator fun plus(other: A) = this
|
|
}
|
|
|
|
fun foo(b: A) {
|
|
var a: A? = A()
|
|
a <caret>+= b
|
|
}
|