twitter/rsc

This types don't include members inherited from self

Closed this issue · 0 comments

trait B {
  self: C =>

  def m1: T = ???
  def m2: B.this.T = ???
}

trait C {
  type T
}
Test.scala:5: error: unbound: type _empty_/B#T
  def m2: B.this.T = ???
                 ^