449c406e24
#KT-33580 Fixed
18 lines
286 B
Kotlin
Vendored
18 lines
286 B
Kotlin
Vendored
abstract class A {
|
|
open var attribute = "a"
|
|
protected set
|
|
}
|
|
|
|
abstract class B : A() {
|
|
override var attribute = "b"
|
|
public set
|
|
}
|
|
|
|
class C : B() {
|
|
<caret>public override var attribute = super.attribute
|
|
}
|
|
|
|
fun main() {
|
|
val c = C()
|
|
c.attribute = "test"
|
|
} |