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