summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/t1260.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pending/pos/t1260.scala b/test/pending/pos/t1260.scala
deleted file mode 100644
index b05259998e..0000000000
--- a/test/pending/pos/t1260.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-case class Foo(a: String, b: String)
-
-object Bar {
- def unapply(s: String): Option[Long] =
- try { Some(s.toLong) } catch { case _ => None }
-}
-
-object Test {
- def main(args: Array[String]) {
- val f = Foo("1", "2")
- f match {
- case Foo(Bar(1), Bar(2)) => ()
- case Foo(Bar(i), Bar(j)) if i >= 0 => ()
- }
- }
-}
-