aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/complicatedmatch.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/complicatedmatch.scala')
-rw-r--r--tests/pending/run/complicatedmatch.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/complicatedmatch.scala b/tests/pending/run/complicatedmatch.scala
index 681029aa1..7a7438445 100644
--- a/tests/pending/run/complicatedmatch.scala
+++ b/tests/pending/run/complicatedmatch.scala
@@ -6,7 +6,7 @@ object Even{
def unapply(x : Int) = if (x % 2 == 0) Some(x / 2) else None;
}
-object Test extends App{
+object Test extends dotty.runtime.LegacyApp{
val LongWord = "supercalifragilisticexpialadocious";
def foo(x : Int, y : String) : Int = (x, y) match {