Skip to content

Commit 2cb34e5

Browse files
committed
Add immutable Map to stdlib
1 parent 02c6281 commit 2cb34e5

File tree

2 files changed

+695
-1
lines changed

2 files changed

+695
-1
lines changed

tests/pos-special/stdlib/collection/immutable/HashMap.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ final class HashMap[K, +V] private[immutable] (private[immutable] val rootNode:
386386
else new HashMap(newRootNode)
387387
}
388388

389-
override def removedAll(keys: IterableOnce[K]): HashMap[K, V] = {
389+
override def removedAll(keys: IterableOnce[K]^): HashMap[K, V] = {
390390
if (isEmpty) {
391391
this
392392
} else {

0 commit comments

Comments
 (0)