// FIR_IDENTICAL abstract class A { abstract val i: Int } class B() : A() { override val i = 1 }