aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/case-class-23.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 13:11:09 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-13 13:11:09 +0200
commit28bb27672bf7e4fb2bb80df48ee8c70628de19c4 (patch)
treeae7dfd0ece97a2b8ad8b9c0915878f2f18699d7e /tests/pending/run/case-class-23.scala
parent1d13da929f7cce642efde39dff2944dfc5b276f9 (diff)
downloaddotty-28bb27672bf7e4fb2bb80df48ee8c70628de19c4.tar.gz
dotty-28bb27672bf7e4fb2bb80df48ee8c70628de19c4.tar.bz2
dotty-28bb27672bf7e4fb2bb80df48ee8c70628de19c4.zip
Use LegacyApp in run tests.
Diffstat (limited to 'tests/pending/run/case-class-23.scala')
-rw-r--r--tests/pending/run/case-class-23.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/run/case-class-23.scala b/tests/pending/run/case-class-23.scala
index 92b719574..a6d78763c 100644
--- a/tests/pending/run/case-class-23.scala
+++ b/tests/pending/run/case-class-23.scala
@@ -24,7 +24,7 @@ case class TwentyThree(
_23: Int
)
-object Test extends App {
+object Test extends dotty.runtime.LegacyApp {
val x = new TwentyThree(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23)
println(x._23)
assert(x.copy(_1 = 1) == x)