fun box(): String { A() return "OK" } class A: B() { override var foo = arrayOf(12, 13) } abstract class B { abstract var foo: Array }