Remove 'import java.util' from js tests.

This commit is contained in:
Ilya Gorbunov
2016-08-20 07:29:41 +03:00
parent 1eac6d47ed
commit 2aa60adbca
54 changed files with 12 additions and 73 deletions
+1 -2
View File
@@ -1,9 +1,8 @@
package foo
import java.util.ArrayList
fun testDownTo() {
var elems = ArrayList<Int>()
var elems = mutableListOf<Int>()
for (i in 4 downTo 0) {
elems.add(i)
}