Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/OverrideTraitVal.txt
T
2014-03-13 10:07:08 +04:00

13 lines
377 B
Plaintext

package test
internal open class Subclass : test.Trait {
/*primary*/ public constructor Subclass()
internal open override /*1*/ val shape: kotlin.String = "circle"
internal open override /*1*/ fun <get-shape>(): kotlin.String
}
internal trait Trait {
internal abstract val shape: kotlin.String
internal abstract fun <get-shape>(): kotlin.String
}