summaryrefslogtreecommitdiff
path: root/test/files/pos/bug360.scala
blob: 53af1e8a1cb79a4402f411dbe22b1671be0e04b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// $Id$

abstract class Bug360A: Bug360C {
  def f: String = "hello";
}
abstract class Bug360B: Bug360C {
  object d {
    System.out.println(f);
  }
}
abstract class Bug360C extends Bug360A with Bug360B;