summaryrefslogtreecommitdiff
path: root/test/files/run/t2212.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2212.scala')
-rw-r--r--test/files/run/t2212.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/run/t2212.scala b/test/files/run/t2212.scala
deleted file mode 100644
index 5f4447fa2b..0000000000
--- a/test/files/run/t2212.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test {
- def main(args: Array[String]) {
- import collection.mutable._
- val x4 = new LinkedList[Int](1, null)
- println(x4)
- val y4 = new LinkedList[Int](1, null)
- println(y4)
- println(x4 equals y4) // or (y4 equals x4)
- }
-}