Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/fullJdk/kt2509.kt
T
2013-02-11 02:01:41 +04:00

13 lines
179 B
Kotlin

fun box(): String {
A()
return "OK"
}
class A: B() {
override var foo = array<Int?>(12, 13)
}
abstract class B {
abstract var foo: Array<Int?>
}