summaryrefslogtreecommitdiff
path: root/test/disabled/buildmanager/overloaded_1/A.scala
blob: c070faf978ec58a6957bb5ad6c03c32fb4bfbc9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
trait As {
  trait C extends D {
    override def foo = this  /// Shouldn't cause the change
    override def foo(act: List[D]) = this
  }

  abstract class D{
    def foo: D = this
    def foo(act: List[D]) = this
  }
}