summaryrefslogblamecommitdiff
path: root/test/files/pos/pat_gilles.scala
blob: 704d5b9c0008f696b107618a4afdc86588e401e4 (plain) (tree)
1
2
3
4
5
6
7
8
9


                       
                                  



                                           
                       






                                               
                  
 
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")
    case Table2.Gaga =>
  }}

}

object Table2 {

  case class CellUpdated(row: Int, column: Int)
  case object Gaga
}