properly read fields of array type from java bytecode
KT-1086
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user