Files
kotlin-fork/idea/testData/intentions/operatorToFunction/keepComments.kt.after
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

13 lines
253 B
Plaintext
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 */.set(
"a", // it's "a"
"b" /* and this is "b" */, /* we use 10 */10
)
}
}