summaryrefslogblamecommitdiff
path: root/test/files/run/bug1373.scala
blob: 537421c7881b9bcf50614df8221cc2966293f47b (plain) (tree)
1
2
3
4
5
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)""")
}