summaryrefslogblamecommitdiff
path: root/test/files/run/t1373.scala
blob: d6f9c1ee1cbe2fe1749dd5ee77736517053245ad (plain) (tree)
1
2
3
4
5
6
                                                                  
                         


                                                                                                           
 
// Testing whether case class params come back in the right order.
object Test extends App {
  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)""")
}