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