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