Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
17f06482f2af85bda22c79ae69cdf72f6fbe574c
/
.
/
analysis
/
analysis-api
/
testData
/
referenceResolve
/
PlusAssignViaPlusOperator.kt
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
}