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

                                         
            

                                                       
    
              

   
object Test {
  def main(args: Array[String]): Unit = {
    val x = 
      try { ("": Any) match { case List(_*) => true } }
      catch { case _ => false }
    
    assert(!x)
  }
}