aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3856.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3856.scala')
-rw-r--r--tests/untried/pos/t3856.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/t3856.scala b/tests/untried/pos/t3856.scala
index 132c95c5e..6b38edc52 100644
--- a/tests/untried/pos/t3856.scala
+++ b/tests/untried/pos/t3856.scala
@@ -4,6 +4,6 @@ case class CS(xs: C[_]*)
// t3856
object Test {
- val x = CS(C(5), C("abc")) match { case CS(C(5), xs @ _*) => xs }
+ val x = CS(C(5), C("abc")) match { case CS(C(5), xs : _*) => xs }
println(x)
}