From 2bc40d593a84a510ccf18b1666a419f77665fcb4 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 11 Jul 2009 05:02:16 +0000 Subject: Fix and test case for #1260. --- test/pending/pos/t1260.scala | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 test/pending/pos/t1260.scala (limited to 'test/pending') 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 => () - } - } -} - -- cgit v1.2.3