summaryrefslogtreecommitdiff
path: root/test/files/pos/list-extractor.scala
blob: 79c622bca06cf219169fa444cf02b3c35f39b201 (plain) (blame)
1
2
3
4
5
6
7
8
// This was fixed in r25277 but is enough different
// from the case I was knowingly fixing, I'm throwing it
// in there.
object HasArgs {
  def boop(params: List[List[_]]) = params match {
    case List(List()) => 2
  }
}