mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
369 B
Plaintext
Vendored
13 lines
369 B
Plaintext
Vendored
package test
|
|
|
|
public open class Subclass : test.Trait {
|
|
/*primary*/ public constructor Subclass()
|
|
public open override /*1*/ val shape: kotlin.String = "circle"
|
|
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
|
|
}
|