summaryrefslogtreecommitdiff
path: root/test/files/pos/scoping1.scala
blob: c9c0489e69083ab8ea73527cc291b383fdaecaa4 (plain) (blame)
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
}