7 lines
74 B
Kotlin
Vendored
7 lines
74 B
Kotlin
Vendored
interface B {
|
|
fun getX() = 1
|
|
}
|
|
|
|
class C : B {
|
|
override val x = 1
|
|
} |