object Test extends App { import reflect.runtime.universe._ // not using the XML library in compiler tests def show(code: String, t: Tree) = println(s"\n$code\n$t") val ns1 = "ns1" show("", q"") show("", q"") show("", q"") show("", q"") // `identity(foo)` used to match the overly permissive match in SymbolXMLBuilder // which was intended to more specifically match `_root_.scala.xml.Text(...)` }