Added quickfix for VAR_OVERRIDDEN_BY_VAL.
This commit is contained in:
committed by
Andrey Breslav
parent
7231606eb2
commit
a5cecd6048
@@ -0,0 +1,8 @@
|
||||
// "Make variable mutable" "true"
|
||||
open class A {
|
||||
open var x = 42;
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override var x: Int = 3;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Make variable mutable" "true"
|
||||
open class A {
|
||||
open var x = 42;
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override val<caret> x: Int = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user