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