summaryrefslogtreecommitdiff
path: root/test/files/pos/t1761.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1761.scala')
-rw-r--r--test/files/pos/t1761.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1761.scala b/test/files/pos/t1761.scala
index a3ceeea815..2af7280734 100644
--- a/test/files/pos/t1761.scala
+++ b/test/files/pos/t1761.scala
@@ -3,7 +3,7 @@ import scala.xml._
class Foo {
val elements: Seq[Node] = Nil
val innerTransform: PartialFunction[Elem, String] = {
- case Elem(_, l: String, _, _, _ @ _*) if elements.exists(_.label == l) =>
+ case Elem(_, l: String, _, _, _ @ _*) if elements.exists(_.label == l) =>
l
}
}