Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/OverrideTraitVal.kt
2018-07-24 10:52:16 +03:00

11 lines
155 B
Kotlin
Vendored

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