summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-03 17:11:30 -0700
committerPaul Phillips <paulp@improving.org>2012-05-03 17:15:31 -0700
commit8bc8b83f0bd7daef62b41b4a0c87b4e9b7344284 (patch)
tree4f445792891bd6945ce8132b97a0231a8cf54392 /test/pending/pos
parent58f6a1346093db2f407879246884d480ff8d7904 (diff)
downloadscala-8bc8b83f0bd7daef62b41b4a0c87b4e9b7344284.tar.gz
scala-8bc8b83f0bd7daef62b41b4a0c87b4e9b7344284.tar.bz2
scala-8bc8b83f0bd7daef62b41b4a0c87b4e9b7344284.zip
Moved passing tests from pending to files.
Most are pattern matcher bugs fixed by virtpatmat. A few are reifier, package object, or miscellaneous. I threw in an original test for SI-2337, to go with those for SI-1697, SI-3705, SI-4415, and SI-1357, all of which (in the interests of making sure this basket has all the eggs) I am closing.
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/no-widen-locals.scala19
-rw-r--r--test/pending/pos/t1357.scala21
-rw-r--r--test/pending/pos/t5240.scala11
3 files changed, 0 insertions, 51 deletions
diff --git a/test/pending/pos/no-widen-locals.scala b/test/pending/pos/no-widen-locals.scala
deleted file mode 100644
index 013e63f0a2..0000000000
--- a/test/pending/pos/no-widen-locals.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-// Worked from r23262 until that was reverted somewhere
-// around r25016.
-import annotation.switch
-
-object Test {
- def f(x: Int) = {
- val X1 = 5
- val X2 = 10
- val X3 = 15
- val X4 = 20
-
- (x: @switch) match {
- case X1 => 1
- case X2 => 2
- case X3 => 3
- case X4 => 4
- }
- }
-}
diff --git a/test/pending/pos/t1357.scala b/test/pending/pos/t1357.scala
deleted file mode 100644
index 7bc6d45034..0000000000
--- a/test/pending/pos/t1357.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-object NonEmptyCons {
- def unapply[H, T](c: (H, T)): Option[(H, T)] = Some(c)
-}
-
-
-object Main {
-
- type BT[+H, +T <: Tuple2[Tuple2[H, T], Tuple2[H, T]]] = Tuple2[H, T]
-
- // type T = Tuple2[String,String]
- type BinaryTree[+E] = BT[E, T forSome { type T <: Tuple2[BT[E, T], BT[E, T]] }]
-
- def foo[E](tree: BinaryTree[E]): Unit = tree match {
- case NonEmptyCons(_, tail) => {
- tail match {
- case NonEmptyCons(_, _) => {
- }
- }
- }
- }
-} \ No newline at end of file
diff --git a/test/pending/pos/t5240.scala b/test/pending/pos/t5240.scala
deleted file mode 100644
index 2db689c27d..0000000000
--- a/test/pending/pos/t5240.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-package object foo {
-
- var labels: Array[_ <: String] = null
-
-}