Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
operatorToFunction
/
keepComments.kt
blob: 99bfb0c8a1437f6bde770d650bc14c973cb1c73e [
file
] [
log
] [
blame
]
interface
C
{
operator
fun
set
(
p1
:
String
,
p2
:
String
,
value
:
Int
)
}
class
D
(
val c
:
C
)
{
fun foo
()
{
this
.
c
/* and this is c */
[<
caret
>
"a"
,
// it's "a"
"b"
/* and this is "b" */
]
=
/* we use 10 */
10
}
}