Improve object arrays support. (#182)

Also fix the way how symbol names are being generated. Before arrays2.kt was not linking.
This commit is contained in:
Nikolay Igotti
2017-01-16 12:22:27 +03:00
committed by GitHub
parent 3b4c25988e
commit 90577d440a
10 changed files with 133 additions and 14 deletions
@@ -3,5 +3,5 @@ fun main(args: Array<String>) {
}
fun foo(): Any {
return Array<Any?>(0)
return Array<Any?>(0, { i -> null })
}