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