aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7584.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t7584.scala')
-rw-r--r--tests/pending/run/t7584.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/t7584.scala b/tests/pending/run/t7584.scala
index 6d7f4f7eb..f134b04a5 100644
--- a/tests/pending/run/t7584.scala
+++ b/tests/pending/run/t7584.scala
@@ -3,7 +3,7 @@
//
// We did flush out a spurious "pure expression does nothing in statement position"
// warning, hence -Xfatal-warnings in the flags file.
-object Test extends App {
+object Test extends dotty.runtime.LegacyApp {
def foo(f: (=> Int, => Int) => Unit) = f({println("a"); 0}, {println("b"); 1})
println("no calls")
foo((a, b) => ())