aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t805.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t805.scala')
-rw-r--r--tests/pending/pos/t805.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/pending/pos/t805.scala b/tests/pending/pos/t805.scala
deleted file mode 100644
index 37bf6b5ef..000000000
--- a/tests/pending/pos/t805.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-trait MatcherYYY {
- trait NodeImpl;
- trait Matchable extends NodeImpl {
- protected def doMatch : Unit = {}
- }
-}
-trait BraceMatcherXXX extends MatcherYYY {
- trait NodeImpl extends super.NodeImpl {
- def doMatch (braces : BracePair) : Unit
- }
- trait BracePair {
- trait BraceImpl extends NodeImpl with Matchable {
- override def doMatch : Unit = {
- super.doMatch;
- ();
- }
- }
- }
-}