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