summaryrefslogtreecommitdiff
path: root/test/files/pos/caseaccs.scala
blob: 2668127fc973029822f071dd043aaa7e40bfd900 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Test {
  case class Foo(x: int, private var y: int)
}

object Test {
  val test = new Test
  val x = test.Foo(1, 2)
  x match {
    case test.Foo(x, y) => println(x); println(y)
  }
}