From 8bc8b83f0bd7daef62b41b4a0c87b4e9b7344284 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 3 May 2012 17:11:30 -0700 Subject: Moved passing tests from pending to files. Most are pattern matcher bugs fixed by virtpatmat. A few are reifier, package object, or miscellaneous. I threw in an original test for SI-2337, to go with those for SI-1697, SI-3705, SI-4415, and SI-1357, all of which (in the interests of making sure this basket has all the eggs) I am closing. --- test/files/run/t3705.scala | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/files/run/t3705.scala (limited to 'test/files/run/t3705.scala') diff --git a/test/files/run/t3705.scala b/test/files/run/t3705.scala new file mode 100644 index 0000000000..fcc020f28c --- /dev/null +++ b/test/files/run/t3705.scala @@ -0,0 +1,17 @@ +// package foo + +import scala.xml._ +object Test { + def updateNodes(ns: Seq[Node]): Seq[Node] = + for(subnode <- ns) yield subnode match { + case {_} if true => abc + case Elem(prefix, label, attribs, scope, children @ _*) => + Elem(prefix, label, attribs, scope, updateNodes(children) : _*) + case other => other + } + def main(args: Array[String]): Unit = { + updateNodes() + + } +} + -- cgit v1.2.3