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