summaryrefslogtreecommitdiff
path: root/test/pending/pos
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-03-16 18:30:10 +0000
committerPaul Phillips <paulp@improving.org>2009-03-16 18:30:10 +0000
commit36bf7cb302fe3df9cb654567b9fc3443cb2cc5ff (patch)
tree2cbc1cd353acdbc1b4743c39fab64f0146debb84 /test/pending/pos
parent67c3c68da5de6284c5e37ef4b5f907d0079f0490 (diff)
downloadscala-36bf7cb302fe3df9cb654567b9fc3443cb2cc5ff.tar.gz
scala-36bf7cb302fe3df9cb654567b9fc3443cb2cc5ff.tar.bz2
scala-36bf7cb302fe3df9cb654567b9fc3443cb2cc5ff.zip
Removed passing test for #1107 from pending; a ...
Removed passing test for #1107 from pending; a larger test case already exists in files.
Diffstat (limited to 'test/pending/pos')
-rw-r--r--test/pending/pos/t1107/Object.scala10
-rw-r--r--test/pending/pos/t1107/Trait.scala9
2 files changed, 0 insertions, 19 deletions
diff --git a/test/pending/pos/t1107/Object.scala b/test/pending/pos/t1107/Object.scala
deleted file mode 100644
index 0fd04695b1..0000000000
--- a/test/pending/pos/t1107/Object.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object O
-{
- def d(t: Top) =
- t match
- {
- case s: Sub => true
- case _ => false
- }
-}
-
diff --git a/test/pending/pos/t1107/Trait.scala b/test/pending/pos/t1107/Trait.scala
deleted file mode 100644
index cd213f9780..0000000000
--- a/test/pending/pos/t1107/Trait.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-sealed trait Top
-sealed trait Sub extends Top
-
-trait C
-{
- private object P extends Sub
-}
-
-