aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t2945.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-05-30 14:42:59 +0200
committerMartin Odersky <odersky@gmail.com>2014-05-30 14:42:59 +0200
commite43c3aaa61e570de1cb80b1766fb3e3988c444a0 (patch)
tree8230b7d27a2525e10482e58678be4beb3eb06480 /tests/pending/pos/t2945.scala
parent315c097d3a72077512fa06d7c26e8ad09a8b3f66 (diff)
downloaddotty-e43c3aaa61e570de1cb80b1766fb3e3988c444a0.tar.gz
dotty-e43c3aaa61e570de1cb80b1766fb3e3988c444a0.tar.bz2
dotty-e43c3aaa61e570de1cb80b1766fb3e3988c444a0.zip
Reclassifying tests
Diffstat (limited to 'tests/pending/pos/t2945.scala')
-rw-r--r--tests/pending/pos/t2945.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/pos/t2945.scala b/tests/pending/pos/t2945.scala
index 0379e9ba1..54f0a7724 100644
--- a/tests/pending/pos/t2945.scala
+++ b/tests/pending/pos/t2945.scala
@@ -1,9 +1,9 @@
object Foo {
def test(s: String) = {
(s: Seq[Char]) match {
- case Seq('f', 'o', 'o', ' ', rest1 @ _*) =>
+ case Seq('f', 'o', 'o', ' ', rest1: _*) =>
rest1
- case Seq('b', 'a', 'r', ' ', ' ', rest2 @ _*) =>
+ case Seq('b', 'a', 'r', ' ', ' ', rest2: _*) =>
rest2
case _ =>
s