882827bf04
pass getter/setter-related flags to AccessorForPropertyDescriptor
10 lines
149 B
Kotlin
Vendored
10 lines
149 B
Kotlin
Vendored
package b
|
|
|
|
public open class B {
|
|
public var OK: String = "OK"
|
|
protected set
|
|
}
|
|
|
|
public class BB : B() {
|
|
public fun ok(): String = OK
|
|
} |