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