aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t1373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t1373.scala')
-rw-r--r--tests/pending/run/t1373.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/pending/run/t1373.scala b/tests/pending/run/t1373.scala
deleted file mode 100644
index 9a873f0ed..000000000
--- a/tests/pending/run/t1373.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-// Testing whether case class params come back in the right order.
-object Test extends dotty.runtime.LegacyApp {
- case class Foo(private val a: String, b: String, private val c: String, d: String, private val e: String)
- val x = Foo("a", "b", "c", "d", "e")
- assert(x.toString == """Foo(a,b,c,d,e)""")
-}