summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-07-28 10:01:46 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-07-28 10:01:46 +0000
commit27700284fa191c42a04e6c1619a76dfd261a59dc (patch)
treec7a0213cb494e633c80352e649afb2eb7e402ef6 /test/files
parentcc711eef357d5461f4987e7a78f852ac11700532 (diff)
downloadscala-27700284fa191c42a04e6c1619a76dfd261a59dc.tar.gz
scala-27700284fa191c42a04e6c1619a76dfd261a59dc.tar.bz2
scala-27700284fa191c42a04e6c1619a76dfd261a59dc.zip
Fixed #2183.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t2183.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/pos/t2183.scala b/test/files/pos/t2183.scala
new file mode 100644
index 0000000000..1243568b63
--- /dev/null
+++ b/test/files/pos/t2183.scala
@@ -0,0 +1,5 @@
+import scala.collection.mutable._
+
+object Test {
+ val m = new HashSet[String] with SynchronizedSet[String]
+}