blob: fe0663360f1e2d3ed6c097f878a7b4ee42af0aef [file]
package test
interface Foo
interface WithOperator {
operator fun plusAssign(f: Foo)
}
fun test(withOperator: WithOperator, foo: Foo) {
withOperator <caret>+= foo
}