Fix exception on overridding var-property with a val constructor parameter

#KT-3810 Fixed
This commit is contained in:
Alexander Udalov
2015-08-24 10:24:53 +03:00
parent 59a15092da
commit 56e12787a8
6 changed files with 37 additions and 9 deletions
@@ -0,0 +1,5 @@
interface A {
var foo: String
}
class B(override <!VAR_OVERRIDDEN_BY_VAL!>val<!> foo: String) : A