Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
operatorToFunction
/
pluPlus.kt
blob: ea420e0501163594c43a60e5aef22471b24520fe [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
interface
C
{
operator
fun
get
(
p
:
String
):
Int
operator
fun
set
(
p
:
String
,
value
:
Int
)
}
fun foo
(
c
:
C
)
{
c
<caret>
[
""
]++
}