summaryrefslogtreecommitdiff
path: root/test/files/run/colltest.scala
diff options
context:
space:
mode:
authorPavel Pavlov <pavel.e.pavlov@gmail.com>2012-09-18 13:01:02 +0700
committerPavel Pavlov <pavel.e.pavlov@gmail.com>2012-09-18 13:06:19 +0700
commitdbd641f592310d7243f675e27ecc8b9d47684309 (patch)
treecc05c16fcd7dc74362b72d1f9b073206a87194da /test/files/run/colltest.scala
parentc761272a82c625f1255302c42c7cd14ce2cc3d78 (diff)
downloadscala-dbd641f592310d7243f675e27ecc8b9d47684309.tar.gz
scala-dbd641f592310d7243f675e27ecc8b9d47684309.tar.bz2
scala-dbd641f592310d7243f675e27ecc8b9d47684309.zip
pull request feedback
Diffstat (limited to 'test/files/run/colltest.scala')
-rw-r--r--test/files/run/colltest.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/colltest.scala b/test/files/run/colltest.scala
index ecd234bdd1..703e94a3c7 100644
--- a/test/files/run/colltest.scala
+++ b/test/files/run/colltest.scala
@@ -61,5 +61,6 @@ object Test extends App {
}
t3954
- new TestSet(HashSet.empty, new scala.collection.mutable.LinkedHashSet)
+ new TestSet(HashSet.empty, new LinkedHashSet)
+ new TestSet(new ImmutableSetAdaptor(collection.immutable.Set.empty[Int]), new LinkedHashSet)
}