mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
14 lines
440 B
Plaintext
Vendored
14 lines
440 B
Plaintext
Vendored
package test
|
|
|
|
internal open class BaseClass {
|
|
/*primary*/ public constructor BaseClass()
|
|
internal open val shape: kotlin.String = "square"
|
|
internal open fun <get-shape>(): kotlin.String
|
|
}
|
|
|
|
internal open class Subclass : test.BaseClass {
|
|
/*primary*/ public constructor Subclass()
|
|
internal open override /*1*/ val shape: kotlin.String = "circle"
|
|
internal open override /*1*/ fun <get-shape>(): kotlin.String
|
|
}
|