Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
operatorToFunction
/
assignment.kt
blob: ad6ec3cb8bba0189dc5d7d26726030bec79d5562 [
file
] [
log
] [
blame
]
interface
C
{
operator
fun
set
(
p
:
String
,
value
:
Int
)
}
class
D
(
val c
:
C
)
{
fun foo
()
{
this
.
c
<caret>
[
""
]
=
10
}
}