9 lines
115 B
Kotlin
Vendored
9 lines
115 B
Kotlin
Vendored
interface T {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface C : T {
|
|
<!ACCIDENTAL_OVERRIDE!>val x: Int<!>
|
|
get() = 1
|
|
}
|