Fix exception on overridding var-property with a val constructor parameter
#KT-3810 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
interface A {
|
||||
var foo: String
|
||||
}
|
||||
|
||||
class B(override <!VAR_OVERRIDDEN_BY_VAL!>val<!> foo: String) : A
|
||||
Reference in New Issue
Block a user