summaryrefslogtreecommitdiff
path: root/test/files/neg/bug112706A.scala
blob: af8491e6ef572551ea7d5bc5ff9b64a3cc2e2a5f (plain) (blame)
1
2
3
4
5
6
7
8
package test;
trait Test {
  def foo(p : List[Tuple2[String,String]]) = {
    for (t <- p) t._1 match {
    case Tuple2(node,_) =>
    }
  }
}