aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t703.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t703.scala')
-rw-r--r--tests/pending/pos/t703.scala29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/pending/pos/t703.scala b/tests/pending/pos/t703.scala
deleted file mode 100644
index b24d70c92..000000000
--- a/tests/pending/pos/t703.scala
+++ /dev/null
@@ -1,29 +0,0 @@
-object Go {
- trait A {
- def f : Unit; // = Console.println("A");
- }
- trait B extends A {
- abstract override def f = {
- super.f;
- Console.println("B");
- }
- }
- trait C extends A {
- abstract override def f = {
- super.f;
- Console.println("C");
- }
- }
- trait D extends B with C {
- abstract override def f = {
- super.f;
- }
- }
- class Super extends A {
- def f: Unit = Console.println("A")
- }
- def main(args : Array[String]) : Unit = {
- object d extends Super with D
- d.f;
- }
-}