[FIR IDE] Fix resolving sugared compound operators (like +=, -=)
^KTIJ-21374 Fixed
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package test
|
||||
|
||||
interface Foo
|
||||
|
||||
interface WithOperator {
|
||||
operator fun plusAssign(f: Foo)
|
||||
}
|
||||
|
||||
fun test(withOperator: WithOperator, foo: Foo) {
|
||||
withOperator <caret>+= foo
|
||||
}
|
||||
Reference in New Issue
Block a user