Fix completion tests after moving collection types in JS

This commit is contained in:
Ilya Gorbunov
2016-08-31 18:50:06 +03:00
parent bf56f04368
commit b741c82a66
3 changed files with 10 additions and 5 deletions
@@ -1,9 +1,11 @@
import java.util.* // temporary until typealiases for collection are introduced in JVM
fun <T> Iterable<T>.first() : T? {
return this.iterator()?.next()
}
fun main(args : Array<String>) {
val test = java.util.HashSet<Int>()
val test = HashSet<Int>()
test.<caret>
}