blob: 7ead2fc74183135082b7d4e7b9747630d6b9871c [file]
// FIR_IDENTICAL
// LANGUAGE:+TakeIntoAccountEffectivelyFinalInMustBeInitializedCheck
open class Base {
open var x: String = ""
}
class Foo : Base() {
override var x: String
init {
x = ""
}
}