32bb64a225
reporting UNSAFE_CALL).
9 lines
149 B
Kotlin
Vendored
9 lines
149 B
Kotlin
Vendored
// "Replace with safe (?.) call" "true"
|
|
class A {
|
|
operator fun plusAssign(other: A) {}
|
|
}
|
|
|
|
fun foo(b: A) {
|
|
var a: A? = A()
|
|
a <caret>+= b
|
|
} |