mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
151 B
Kotlin
10 lines
151 B
Kotlin
package test
|
|
|
|
open class BaseClass() {
|
|
open val shape = "square"
|
|
}
|
|
|
|
open class Subclass() : BaseClass() {
|
|
override open val shape = "circle"
|
|
}
|