summaryrefslogblamecommitdiff
path: root/test/files/pos/scoping1.scala
blob: c72df7fa8b07237e8c64a7d1484c0109ea8b11c3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                 
                         






                                
object This extends Application {
     trait A {
         def foo(): unit;
     }
     class C { self: A =>
         def bar() = this.foo();
     }
  class D extends C with A {
    def foo() = ()
  }
  val c: C = new D;
}