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