Files

9 lines
112 B
Kotlin
Vendored

// FIR_IDENTICAL
open class B {
private fun getX() = 1
}
class C : B() {
val x: Int
get() = 1
}