aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t360.scala
blob: f3716d4f9717e1069607aafba9f30a377eab7548 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                    
abstract class Bug360A { self: Bug360C =>
  def f: String = "hello";
}
trait Bug360B { self: Bug360C =>
  object d {
    Console.println(f);
  }
}
abstract class Bug360C extends Bug360A with Bug360B;