// "Initialize with constructor parameter" "true" open class A { var n: Int get() = 1 } class B : A() fun test() { val a = A() }