summaryrefslogtreecommitdiff
path: root/test/files/run/colltest1.scala
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-09-18 09:57:03 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-09-18 09:57:03 -0700
commitc9b2ef64108d75ab41ff95cc32bc503e77653e66 (patch)
tree8c20c020da84210aa3fdb09c7ab97bc6d2d4c6a4 /test/files/run/colltest1.scala
parenta9f95dc29f366d935604f15a4a99cbfd1a1bd275 (diff)
parentdbd641f592310d7243f675e27ecc8b9d47684309 (diff)
downloadscala-c9b2ef64108d75ab41ff95cc32bc503e77653e66.tar.gz
scala-c9b2ef64108d75ab41ff95cc32bc503e77653e66.tar.bz2
scala-c9b2ef64108d75ab41ff95cc32bc503e77653e66.zip
Merge pull request #1298 from pavelpavlov/SI-5767
SI-5767 fix + protecting public FlatHashMap API
Diffstat (limited to 'test/files/run/colltest1.scala')
-rw-r--r--test/files/run/colltest1.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/files/run/colltest1.scala b/test/files/run/colltest1.scala
index 1cbd932222..54adeb7cda 100644
--- a/test/files/run/colltest1.scala
+++ b/test/files/run/colltest1.scala
@@ -226,6 +226,7 @@ object Test extends App {
setTest(mutable.Set())
setTest(immutable.Set())
setTest(mutable.HashSet())
+ setTest(mutable.LinkedHashSet())
setTest(immutable.HashSet())
mapTest(Map())
@@ -233,5 +234,6 @@ object Test extends App {
mapTest(immutable.Map())
mapTest(immutable.TreeMap())
mutableMapTest(mutable.HashMap())
+ mutableMapTest(mutable.LinkedHashMap())
mapTest(immutable.HashMap())
}