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