summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-10 23:19:55 -0700
committerPaul Phillips <paulp@improving.org>2012-05-10 23:20:56 -0700
commitef32a8b9334307d15d9fa68d3da3f6f80b200788 (patch)
treee4727e50d595de563c8d6c6936389c4090e4db60 /test/pending/pos
parentdf10f921158ea13ce8fb53c8e15ec290ace69d83 (diff)
downloadscala-ef32a8b9334307d15d9fa68d3da3f6f80b200788.tar.gz
scala-ef32a8b9334307d15d9fa68d3da3f6f80b200788.tar.bz2
scala-ef32a8b9334307d15d9fa68d3da3f6f80b200788.zip
Removing redunant/passing tests from pending.
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/unapplyGeneric.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pending/pos/unapplyGeneric.scala b/test/pending/pos/unapplyGeneric.scala
deleted file mode 100644
index bf88816885..0000000000
--- a/test/pending/pos/unapplyGeneric.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Bar {
- def unapply[A,B](bar:Bar[A,B]) = Some(bar)
-}
-
-class Bar[A,B](val _1:A, val _2:B) extends Product2[A,B]
-
-object Test {
- new Bar(2, 'a') match {
- case Bar(x,y) =>
- }
-}