KT-1589: Array<T>(size) renamed to arrayOfNulls

This commit is contained in:
Alex Tkachman
2012-04-02 14:30:37 +03:00
parent a1582e1911
commit ffbce7fe1e
21 changed files with 24 additions and 24 deletions
@@ -1,6 +1,6 @@
package foo
val a1 = Array<Int>(10)
val a1 = arrayOfNulls<Int>(10)
fun box() : Boolean {
var c = 0
@@ -1,6 +1,6 @@
package foo
val a1 = Array<Int>(0)
val a1 = arrayOfNulls<Int>(0)
fun box() : Boolean {
for (a in a1) {