11 lines
108 B
Kotlin
Vendored
11 lines
108 B
Kotlin
Vendored
interface T1 {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface T2 {
|
|
val x: Int
|
|
get() = 1
|
|
}
|
|
|
|
class C : T1, T2 {
|
|
} |