Don't add initializer to extension property on override/implement

This commit is contained in:
Alexander Udalov
2014-05-28 20:12:19 +04:00
parent d78d4bc44c
commit a78b7fb31f
6 changed files with 40 additions and 15 deletions
@@ -0,0 +1,7 @@
trait A {
var Int.foo : Double
}
class B : A {
<caret>
}