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

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