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