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