IDE: Don't do any resolution in ReplaceInfixOrOperatorCallFix.invoke().

This commit is contained in:
Mark Punzalan
2021-05-22 07:01:45 +00:00
committed by teamcityserver
parent 06adb405e1
commit 5a6d543fba
6 changed files with 70 additions and 15 deletions
@@ -0,0 +1,9 @@
// "Replace with safe (?.) call" "true"
class A {
operator fun plusAssign(other: A) {}
}
fun foo(b: A) {
var a: A? = A()
a <caret>+= b
}