aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t1373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/t1373.scala')
-rw-r--r--tests/run/t1373.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/run/t1373.scala b/tests/run/t1373.scala
new file mode 100644
index 000000000..9a873f0ed
--- /dev/null
+++ b/tests/run/t1373.scala
@@ -0,0 +1,6 @@
+// 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)""")
+}