summaryrefslogtreecommitdiff
path: root/test/pending/run/t3702.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t3702.scala')
-rw-r--r--test/pending/run/t3702.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/pending/run/t3702.scala b/test/pending/run/t3702.scala
deleted file mode 100644
index e08fc12e76..0000000000
--- a/test/pending/run/t3702.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test {
- def main(args: Array[String]) {
- foo(Nil, Nil)
- }
-
- def foo(h: Any, t: List[Any]) = h match {
- case 5 :: _ => ()
- case List(from) => List(from, from, from)
- }
-}