Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/OverrideTraitVal.kt
2015-05-12 19:43:17 +02:00

11 lines
149 B
Kotlin
Vendored

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