summaryrefslogtreecommitdiff
path: root/test/files/run/t7459f.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7459f.scala')
-rw-r--r--test/files/run/t7459f.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t7459f.scala b/test/files/run/t7459f.scala
index 63e2109560..5cd972129a 100644
--- a/test/files/run/t7459f.scala
+++ b/test/files/run/t7459f.scala
@@ -3,7 +3,7 @@ object Test extends App {
case class FooSeq(x: Int, y: String, z: C*)
- FooSeq(1, "a", new C()) match {
+ (FooSeq(1, "a", new C()): @unchecked) match {
case FooSeq(1, "a", x@_* ) =>
//println(x.toList)
x.asInstanceOf[x.type]