aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t8128.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t8128.scala')
-rw-r--r--tests/pending/pos/t8128.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/pos/t8128.scala b/tests/pending/pos/t8128.scala
deleted file mode 100644
index b6f76691b..000000000
--- a/tests/pending/pos/t8128.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-object G {
- def unapply(m: Any): Option[_] = Some("")
-}
-
-object H {
- def unapplySeq(m: Any): Option[Seq[_]] = None
-}
-
-object Test {
- (0: Any) match {
- case G(v) => v
- case H(v) => v
- case _ =>
- }
-}