7e6495618b
#KT-10416 Fixed
6 lines
114 B
Kotlin
Vendored
6 lines
114 B
Kotlin
Vendored
// "Make variable mutable" "true"
|
|
open class A {
|
|
open var x = 42;
|
|
}
|
|
|
|
class B(override val<caret> x: Int) : A() |