properly read fields of array type from java bytecode

KT-1086
This commit is contained in:
Stepan Koltsov
2012-01-23 19:12:19 +04:00
parent ca6f04eb55
commit 45cc0cd99e
3 changed files with 25 additions and 8 deletions
@@ -0,0 +1,5 @@
package test;
class FieldOfArrayType {
public java.io.File[] files;
}
@@ -0,0 +1,5 @@
package test
open class FieldOfArrayType() {
var files: Array<java.io.File?>? = null
}