Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
17f06482f2af85bda22c79ae69cdf72f6fbe574c
/
.
/
analysis
/
analysis-api
/
testData
/
referenceResolve
/
PlusAssignOperator.kt
blob: fe0663360f1e2d3ed6c097f878a7b4ee42af0aef [
file
]
package
test
interface
Foo
interface
WithOperator
{
operator
fun plusAssign
(
f
:
Foo
)
}
fun test
(
withOperator
:
WithOperator
,
foo
:
Foo
)
{
withOperator
<caret>
+=
foo
}