Dropped extra caret markers and introduced separate marker for referencing from context.

This commit is contained in:
Zalim Bashorov
2014-02-24 18:37:48 +04:00
parent 75e10322d0
commit 559ea28a6b
5 changed files with 9 additions and 10 deletions
@@ -3,19 +3,19 @@ trait T {
}
open class X: T {
override var <caret>foo: String
override var foo: String
get() = ""
set(value: String) {}
}
open trait Y: T {
override var <caret>foo: String
override var foo: String
get() = ""
set(value: String) {}
}
open class Z: Y {
override var <caret>foo: String
override var foo: String
get() = ""
set(value: String) {}
}