Comments and formatting preseving added
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user