aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t1373.scala
blob: 9a873f0ed5180f2f39be33c0d0277e9912c65396 (plain) (tree)
1
2
3
4
5
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)""")
}