summaryrefslogblamecommitdiff
path: root/test/files/pos/pat_gilles.scala
blob: 0ceea51cbbc91b32e1f84bc1ea4772ceabf7dbe2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                               
abstract class Table2 {


  val x: Any => Unit = { zz:Any =>
    zz match {
    case Table2.CellUpdated(row, column) =>
      val foo = Table2.CellUpdated(2,2)
      Console.println("cuckoo")
  }}

}

object Table2 {

  case class CellUpdated(row: Int, column: Int)

}