summaryrefslogblamecommitdiff
path: root/test/files/pos/pat_gilles.scala
blob: 567d700eba5232f6183133cd99f0fbe187fcef5d (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
}