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,6 +1,5 @@
package foo
import java.util.HashMap
operator fun <K, V> Map<K, V>.iterator(): Iterator<Map.Entry<K, V>> {
@@ -1,6 +1,5 @@
package foo
import java.util.ArrayList
class A {
operator fun component1(): Int = 1
@@ -8,7 +7,7 @@ class A {
operator fun A.component2(): String = "n"
fun box(): String {
val list = ArrayList<A>()
val list = mutableListOf<A>()
list.add(A())
var i = 0;