Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cf9aa6a3600c4d1fa5e4fe06dddbc71358e30e4a
/
.
/
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
}