summaryrefslogtreecommitdiff
path: root/test/files/run/bug1373.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug1373.scala')
-rw-r--r--test/files/run/bug1373.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/files/run/bug1373.scala b/test/files/run/bug1373.scala
deleted file mode 100644
index 537421c788..0000000000
--- a/test/files/run/bug1373.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-// 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