Fix completion tests after moving collection types in JS
This commit is contained in:
@@ -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>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user