Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt2509.kt
T
Alexander Udalov d011fa8dc6 Add FULL_JDK to tests in codegen/boxWithStdlib/fullJdk/
Drop the old scheme which relied on the directory name
2016-03-03 16:08:18 +03:00

13 lines
181 B
Kotlin
Vendored

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