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.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/pos/t1761.scala b/test/files/pos/t1761.scala
deleted file mode 100644
index 2af7280734..0000000000
--- a/test/files/pos/t1761.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.xml._
-
-class Foo {
- val elements: Seq[Node] = Nil
- val innerTransform: PartialFunction[Elem, String] = {
- case Elem(_, l: String, _, _, _ @ _*) if elements.exists(_.label == l) =>
- l
- }
-}
-