aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3577.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3577.scala')
-rw-r--r--tests/untried/pos/t3577.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/t3577.scala b/tests/untried/pos/t3577.scala
index 80a280f67..1ac1786c1 100644
--- a/tests/untried/pos/t3577.scala
+++ b/tests/untried/pos/t3577.scala
@@ -4,7 +4,7 @@ case class C2(checks: Check[_]*);
object C {
def m(x : C2): Any = (null: Any) match {
- case C2(_, rest @ _*) => {
+ case C2(_, rest : _*) => {
rest.map(_.value)
}
}