aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t2945.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t2945.scala')
-rw-r--r--tests/pending/pos/t2945.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/pending/pos/t2945.scala b/tests/pending/pos/t2945.scala
new file mode 100644
index 000000000..0379e9ba1
--- /dev/null
+++ b/tests/pending/pos/t2945.scala
@@ -0,0 +1,12 @@
+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
+ }
+ }
+}