aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t1107b
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t1107b')
-rw-r--r--tests/untried/pos/t1107b/O.scala13
-rw-r--r--tests/untried/pos/t1107b/T.scala7
2 files changed, 0 insertions, 20 deletions
diff --git a/tests/untried/pos/t1107b/O.scala b/tests/untried/pos/t1107b/O.scala
deleted file mode 100644
index 019886770..000000000
--- a/tests/untried/pos/t1107b/O.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-object O
-{
- def d(t: Top) = t match {
- case s: Sub => true
- case _ => false
- }
-
- def main(args: Array[String]): Unit = {
- val c = new AnyRef with C
-
- c.bob.toString + c.bob2.toString
- }
-}
diff --git a/tests/untried/pos/t1107b/T.scala b/tests/untried/pos/t1107b/T.scala
deleted file mode 100644
index 0dff0b94f..000000000
--- a/tests/untried/pos/t1107b/T.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-sealed trait Top
-sealed trait Sub extends Top
-trait C {
- private object P extends Sub
- def bob() = P.getClass
- def bob2() = O.d(P)
-}