aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t661.scala
blob: f2b76ee2f8940756b03967033b947d82c1e7043d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                
                              




                                                    
package test;

object test {
  abstract class A {
    abstract class C {
      type M;
      def foo(n : M) : Unit = {}
    }
  }
  trait B extends A {
    type N;
    trait CC extends super.C {
      type M = N;
      override def foo(n : M) : Unit = super.foo(n);
    }
  }
}