aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/matcharraytail.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/matcharraytail.scala')
-rw-r--r--tests/pending/run/matcharraytail.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/matcharraytail.scala b/tests/pending/run/matcharraytail.scala
index e82bcf6f0..3120769f4 100644
--- a/tests/pending/run/matcharraytail.scala
+++ b/tests/pending/run/matcharraytail.scala
@@ -1,4 +1,4 @@
-object Test extends App{
+object Test extends dotty.runtime.LegacyApp{
Array("foo", "bar", "baz") match {
case x@Array("foo", bar :_*) => println(x.deep.toString); println(bar.toString);
case Array(x, y, z) => println("shouldn't have fallen through");