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







                                          
                                                     



                        
                         

                                    
                       





                            
                          

                                         


                    
 
class Channel[a]

import collection.mutable.Set

case class ![a](chan: Channel[a], data: a)

/*
object Bang {
  def unapply[a](x: ![a]): Option[{Channel[a], a}] = 
    Some(x.chan, x.data)
}

*/
object Test extends App {
  object IC extends Channel[Int]
  def f[b](x: ![b]): Int = x match {
    case send: ![c] => 
      send.chan match {
        case IC => send.data
      }
  }
}

object Test2 extends App {
  object IC extends Channel[Set[Int]]
  def f[b](s: ![b]): Set[Int] = s match {
    case IC ! x => x
  }
}