summaryrefslogtreecommitdiff
path: root/test/pending/pos/t0576.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-01-19 03:53:44 +0000
committerPaul Phillips <paulp@improving.org>2011-01-19 03:53:44 +0000
commitd6816e01433d88b474bbd0a7290bdc96890b9f37 (patch)
tree854cbf689ea640d7ada202bdfc646515b253ffb6 /test/pending/pos/t0576.scala
parent5d8c6c898aa4031c69f9ef0f0dbe8a82e51f793e (diff)
downloadscala-d6816e01433d88b474bbd0a7290bdc96890b9f37.tar.gz
scala-d6816e01433d88b474bbd0a7290bdc96890b9f37.tar.bz2
scala-d6816e01433d88b474bbd0a7290bdc96890b9f37.zip
Moved and removed a bunch of tests from pending.
Diffstat (limited to 'test/pending/pos/t0576.scala')
-rw-r--r--test/pending/pos/t0576.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/pending/pos/t0576.scala b/test/pending/pos/t0576.scala
deleted file mode 100644
index 669806826d..0000000000
--- a/test/pending/pos/t0576.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class Test {
- new Object { self =>
- def f(other: Any): Boolean =
- other match {
- case that: self.type => true
- case _ => false
- }
- }
-}