Comments and formatting preseving added

This commit is contained in:
Valentin Kipyatkov
2015-10-20 19:07:03 +03:00
parent 7c8967ea4e
commit 612f9b1041
10 changed files with 56 additions and 10 deletions
@@ -0,0 +1,11 @@
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
}
}