mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
145 B
Kotlin
11 lines
145 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
trait Trait {
|
|
val shape: String
|
|
}
|
|
|
|
open class Subclass() : Trait {
|
|
override open val shape = "circle"
|
|
}
|