summaryrefslogblamecommitdiff
path: root/test/files/pos/t3534.scala
blob: d926d4e286e1dac7eeab2ac44cdbbaa008d41fe8 (plain) (tree)
1
2
3
4
5
6





                                                                  
object Test {
   List[Option[Int]]() match {
     case None :: bb :: cc => ()
     case x => throw new Exception(x.filter(_.isDefined).mkString)
   }
 }