Files
kotlin-fork/idea/testData/intentions/operatorToFunction/keepComments.kt
T
2015-10-22 18:48:17 +03:00

12 lines
256 B
Kotlin
Vendored

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
}
}