Do not reference java.util in tests that run on JS backend.

This commit is contained in:
Ilya Gorbunov
2016-09-30 22:15:34 +03:00
parent 491ca582b3
commit 38840bb529
151 changed files with 76 additions and 214 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
fun foo() {
val l = java.util.ArrayList<Int>(2)
val l = ArrayList<Int>(2)
l.add(1)
for (el in l) {}