Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/OverrideTraitVal.kt
T
2013-12-17 20:28:59 +04:00

10 lines
126 B
Kotlin

package test
trait Trait {
val shape: String
}
open class Subclass() : Trait {
override open val shape = "circle"
}