aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2945.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2945.scala')
-rw-r--r--tests/untried/pos/t2945.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/untried/pos/t2945.scala b/tests/untried/pos/t2945.scala
deleted file mode 100644
index 0379e9ba1..000000000
--- a/tests/untried/pos/t2945.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object Foo {
- def test(s: String) = {
- (s: Seq[Char]) match {
- case Seq('f', 'o', 'o', ' ', rest1 @ _*) =>
- rest1
- case Seq('b', 'a', 'r', ' ', ' ', rest2 @ _*) =>
- rest2
- case _ =>
- s
- }
- }
-}