summaryrefslogtreecommitdiff
path: root/test/files/buildmanager/overloaded_1/A.scala
blob: 33b63b8006e813eb2bcf000b57b92f9f4c66b947 (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
  }
}