summaryrefslogblamecommitdiff
path: root/test/files/neg/t1878.scala
blob: b29186afc093d5c5c82dbd17d443499820ca45c0 (plain) (tree)
1
2
3
4
5
6
7
8
9
                         
            
                                                    
 

                                                              
 

                                                              
 
                          



                           
    
 
object Test extends App {
  // illegal
  val err1 = "" match { case Seq(f @ _*, ',') => f }

  // no error
  val List(List(arg1, _*), _) = List(List(1,2,3), List(4,5,6))

  // illegal
  val List(List(_*, arg2), _) = List(List(1,2,3), List(4,5,6))

  /* see t1878-typer.scala
  // illegal - bug #1764
  null match {
    case <p> { _* } </p> =>
  }
  */
}