22830cf159
^KTIJ-21374 Fixed
12 lines
175 B
Kotlin
Vendored
12 lines
175 B
Kotlin
Vendored
package test
|
|
|
|
interface Foo
|
|
|
|
interface WithOperator {
|
|
operator fun plusAssign(f: Foo)
|
|
}
|
|
|
|
fun test(withOperator: WithOperator, foo: Foo) {
|
|
withOperator <caret>+= foo
|
|
}
|