summaryrefslogtreecommitdiff
path: root/test/pending
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-05-26 13:40:48 +0000
committerMartin Odersky <odersky@gmail.com>2006-05-26 13:40:48 +0000
commit757086a40b7c49b77b1c98a4b0c7cf4b27922ca9 (patch)
tree6ca063751dfc5ac3fc9681bc6914f24e594e477e /test/pending
parentfa80c56a42832ed9b3b778266fb0da5cd0a4a18a (diff)
downloadscala-757086a40b7c49b77b1c98a4b0c7cf4b27922ca9.tar.gz
scala-757086a40b7c49b77b1c98a4b0c7cf4b27922ca9.tar.bz2
scala-757086a40b7c49b77b1c98a4b0c7cf4b27922ca9.zip
fixed bug609 -- super accessors and separate co...
fixed bug609 -- super accessors and separate compilation
Diffstat (limited to 'test/pending')
-rw-r--r--test/pending/pos/bug609/a.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/pending/pos/bug609/a.scala b/test/pending/pos/bug609/a.scala
deleted file mode 100644
index 137c3c6009..0000000000
--- a/test/pending/pos/bug609/a.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-package test;
-abstract class MyLinkedList {
- type Node <: NodeImpl;
- def init : Node;
- final class Segment(node : Node);
- trait NodeImpl {
- def insertAfter(node : Node) : Unit = insertAfter(new Segment(node));
- def insertAfter(segment : Segment) = {}
- }
-}
-trait MyOffsetList extends MyLinkedList {
- type Node <: NodeImpl;
- trait NodeImpl extends super.NodeImpl {
- override def insertAfter(segment : Segment) = super.insertAfter(segment);
- }
-}