9 lines
89 B
Kotlin
Vendored
9 lines
89 B
Kotlin
Vendored
interface T {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface C : T {
|
|
val x: Int
|
|
get() = 1
|
|
}
|