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