From b70cf1f40b36ec686c68f514579d71a44d09a0a3 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 18 Jul 2009 17:34:33 +0000 Subject: Fix and test case for #1373. --- test/files/run/bug1373.scala | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/files/run/bug1373.scala (limited to 'test/files/run/bug1373.scala') diff --git a/test/files/run/bug1373.scala b/test/files/run/bug1373.scala new file mode 100644 index 0000000000..537421c788 --- /dev/null +++ b/test/files/run/bug1373.scala @@ -0,0 +1,6 @@ +// Testing whether case class params come back in the right order. +object Test extends Application { + 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)""") +} \ No newline at end of file -- cgit v1.2.3