aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/virtpatmat_exist_uncurry.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/virtpatmat_exist_uncurry.scala')
-rw-r--r--tests/pending/pos/virtpatmat_exist_uncurry.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/pending/pos/virtpatmat_exist_uncurry.scala b/tests/pending/pos/virtpatmat_exist_uncurry.scala
deleted file mode 100644
index 727922b31..000000000
--- a/tests/pending/pos/virtpatmat_exist_uncurry.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object Test {
- trait Leaf[T] {
- def collect[U](f: PartialFunction[Leaf[_], U]): List[U]
- def leaves: List[Leaf[T]] = collect { case l: Leaf[T] => l }
- }
-}