blob: 75f42e725b3b49e3c6414db30a3ffe13ff316a29 [file]
// UNRESOLVED_REFERENCE
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
}