test for unreproducable KT-2509

This commit is contained in:
Alex Tkachman
2012-08-03 08:01:25 +03:00
parent abee22ccca
commit 4f385e89d3
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,12 @@
fun box() : String {
A()
return "OK"
}
class A: B() {
override var foo = array<Int?>(12, 13)
}
abstract class B {
abstract var foo: Array<Int?>
}