summaryrefslogtreecommitdiff
path: root/test/files/run/t3705.scala
blob: fcc020f28c0793e391aa18d9c6918945d34e53e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// package foo

import scala.xml._
object Test {
  def updateNodes(ns: Seq[Node]): Seq[Node] =
    for(subnode <- ns) yield subnode match {
      case <d>{_}</d> if true => <d>abc</d>
      case Elem(prefix, label, attribs, scope, children @ _*) =>
        Elem(prefix, label, attribs, scope, updateNodes(children) : _*)
      case other => other
    }
  def main(args: Array[String]): Unit = {
    updateNodes(<b />)
    
  }
}