summaryrefslogblamecommitdiff
path: root/test/files/run/bug1220.scala
blob: 88baa980f5e6e352b3d7936bbcb3fc9a8e8bbea7 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                 



                                               


             
                                              





                                                           
object Test extends Application {

  class QSRichIterable[A](self: Iterable[A]) {
    def filterMap[R](f: PartialFunction[A,R]) =
      self filter (f.isDefinedAt) map f
  }

  object Un {
    def unapply(i: Int): Option[Int] = Some(i)
  }

  val richIter = new QSRichIterable(List(0, 1, 2, 3, 4))

  assert((richIter filterMap {case Un(3) => 7}) == List(7))
}