aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6663.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6663.scala')
-rw-r--r--tests/pending/run/t6663.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/t6663.scala b/tests/pending/run/t6663.scala
index 6818d286d..bfe464ad6 100644
--- a/tests/pending/run/t6663.scala
+++ b/tests/pending/run/t6663.scala
@@ -5,7 +5,7 @@ class C(v: Any) extends Dynamic {
def applyDynamic[T](n: String)(): Option[T] = Option(v.asInstanceOf[T])
}
-object Test extends App {
+object Test extends dotty.runtime.LegacyApp {
// this should be converted to
// C(42).selectDynamic[Int]("foo").get
// but, before fixing SI-6663, became