mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
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
|
|
} |